Pull request 2023: upd-node
Squashed commit of the following: commit 83b0aa9703a7fd023eeb82a4fdf43a5717a3d9cf Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Thu Oct 5 17:42:38 2023 +0300 all: upd node
This commit is contained in:
parent
fd13953eea
commit
e79981e8bb
|
@ -2,7 +2,7 @@
|
|||
|
||||
'env':
|
||||
'GO_VERSION': '1.20.8'
|
||||
'NODE_VERSION': '14'
|
||||
'NODE_VERSION': '16'
|
||||
|
||||
'on':
|
||||
'push':
|
||||
|
|
|
@ -29,6 +29,10 @@ NOTE: Add new changes BELOW THIS COMMENT.
|
|||
- Ability to specify for how long clients should cache a filtered response,
|
||||
using the *Blocked response TTL* field on the *DNS settings* page ([#4569]).
|
||||
|
||||
### Changed
|
||||
|
||||
- Node 16 is now required to build the frontend.
|
||||
|
||||
### Fixed
|
||||
|
||||
- Improper validation of password length ([#6280]).
|
||||
|
|
|
@ -262,8 +262,8 @@ Run `make init` to prepare the development environment.
|
|||
You will need this to build AdGuard Home:
|
||||
|
||||
* [Go](https://golang.org/dl/) v1.20 or later;
|
||||
* [Node.js](https://nodejs.org/en/download/) v10.16.2 or later;
|
||||
* [npm](https://www.npmjs.com/) v6.14 or later;
|
||||
* [Node.js](https://nodejs.org/en/download/) v16 or later;
|
||||
* [npm](https://www.npmjs.com/) v8 or later;
|
||||
* [yarn](https://yarnpkg.com/) v1.22.5 or later.
|
||||
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
# Make sure to sync any changes with the branch overrides below.
|
||||
'variables':
|
||||
'channel': 'edge'
|
||||
'dockerGo': 'adguard/golang-ubuntu:7.1'
|
||||
'dockerGo': 'adguard/golang-ubuntu:7.2'
|
||||
|
||||
'stages':
|
||||
- 'Build frontend':
|
||||
|
@ -272,7 +272,7 @@
|
|||
# need to build a few of these.
|
||||
'variables':
|
||||
'channel': 'beta'
|
||||
'dockerGo': 'adguard/golang-ubuntu:7.1'
|
||||
'dockerGo': 'adguard/golang-ubuntu:7.2'
|
||||
# release-vX.Y.Z branches are the branches from which the actual final
|
||||
# release is built.
|
||||
- '^release-v[0-9]+\.[0-9]+\.[0-9]+':
|
||||
|
@ -287,4 +287,4 @@
|
|||
# are the ones that actually get released.
|
||||
'variables':
|
||||
'channel': 'release'
|
||||
'dockerGo': 'adguard/golang-ubuntu:7.1'
|
||||
'dockerGo': 'adguard/golang-ubuntu:7.2'
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
# Make sure to sync any changes with the branch overrides below.
|
||||
'variables':
|
||||
'channel': 'edge'
|
||||
'dockerGo': 'adguard/golang-ubuntu:7.1'
|
||||
'dockerGo': 'adguard/golang-ubuntu:7.2'
|
||||
'snapcraftChannel': 'edge'
|
||||
|
||||
'stages':
|
||||
|
@ -191,7 +191,7 @@
|
|||
# need to build a few of these.
|
||||
'variables':
|
||||
'channel': 'beta'
|
||||
'dockerGo': 'adguard/golang-ubuntu:7.1'
|
||||
'dockerGo': 'adguard/golang-ubuntu:7.2'
|
||||
'snapcraftChannel': 'beta'
|
||||
# release-vX.Y.Z branches are the branches from which the actual final
|
||||
# release is built.
|
||||
|
@ -207,5 +207,5 @@
|
|||
# are the ones that actually get released.
|
||||
'variables':
|
||||
'channel': 'release'
|
||||
'dockerGo': 'adguard/golang-ubuntu:7.1'
|
||||
'dockerGo': 'adguard/golang-ubuntu:7.2'
|
||||
'snapcraftChannel': 'candidate'
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
'key': 'AHBRTSPECS'
|
||||
'name': 'AdGuard Home - Build and run tests'
|
||||
'variables':
|
||||
'dockerGo': 'adguard/golang-ubuntu:7.1'
|
||||
'dockerGo': 'adguard/golang-ubuntu:7.2'
|
||||
|
||||
'stages':
|
||||
- 'Tests':
|
||||
|
|
Loading…
Reference in New Issue