File tree Expand file tree Collapse file tree 7 files changed +85
-4
lines changed
Expand file tree Collapse file tree 7 files changed +85
-4
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
66and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
77
8+ ## [ v3.0.0] - 2025-07-23
9+
10+ ### Added
11+
12+ - Deploy to ` npmjs ` .
13+
14+ [ v3.0.0 ] : https://github.com/AdguardTeam/FiltersCompiler/compare/v2.0.6...v3.0.0
15+
816## [ v2.0.6] - 2025-07-21
917
1018### Added
Original file line number Diff line number Diff line change 66
77---
88!include 'build.yaml'
9+
10+ ---
11+ !include 'deploy.yaml'
12+
13+ ---
14+ !include 'permissions.yaml'
Original file line number Diff line number Diff line change 3636 pnpm install ${bamboo.varsPnpm}
3737 pnpm build
3838 pnpm build-txt
39+ pnpm pack --out filters-compiler.tgz
3940 - inject-variables :
4041 file : dist/build.txt
4142 scope : RESULT
@@ -61,6 +62,11 @@ Build:
6162 echo "Size before cleanup:" && du -h | tail -n 1
6263 rm -rf node_modules
6364 echo "Size after cleanup:" && du -h | tail -n 1
65+ artifacts :
66+ - name : filters-compiler.tgz
67+ pattern : filters-compiler.tgz
68+ shared : true
69+ required : true
6470 requirements :
6571 - adg-docker : ' true'
6672
Original file line number Diff line number Diff line change 1+ ---
2+ version : 2
3+ deployment :
4+ name : filters-compiler - deploy
5+ source-plan : AJL-FILTRCOMPBUILD
6+ release-naming : ${bamboo.inject.version}
7+ environments :
8+ - npmjs
9+ npmjs :
10+ docker :
11+ image : adguard/node-ssh:22.14--0
12+ volumes :
13+ ${system.PNPM_DIR} : " ${bamboo.cachePnpm}"
14+ triggers : [ ]
15+ tasks :
16+ - checkout :
17+ force-clean-build : true
18+ - artifact-download :
19+ artifacts :
20+ - name : filters-compiler.tgz
21+ - script :
22+ interpreter : SHELL
23+ scripts :
24+ - |-
25+ set -e
26+ set -x
27+
28+ # Fix mixed logs
29+ exec 2>&1
30+
31+ ls -la
32+
33+ export NPM_TOKEN=${bamboo.npmSecretToken}
34+ echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > .npmrc
35+ npm publish filters-compiler.tgz --access public
36+ requirements :
37+ - adg-docker : ' true'
38+ notifications :
39+ - events :
40+ - deployment-started-and-finished
41+ recipients :
42+ - webhook :
43+ name : Deploy webhook
44+ url : http://prod.jirahub.service.eu.consul/v1/webhook/bamboo
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ variables:
99
1010stages :
1111 - Increment :
12- manual : false
12+ manual : true
1313 final : false
1414 jobs :
1515 - Increment
Original file line number Diff line number Diff line change 1+ ---
2+ version : 2
3+ deployment :
4+ name : filters-compiler - deploy
5+ deployment-permissions :
6+ - groups :
7+ - extensions-developers
8+ permissions :
9+ - view
10+ environment-permissions :
11+ - npmjs :
12+ - groups :
13+ - extensions-developers
14+ permissions :
15+ - view
16+ - deploy
Original file line number Diff line number Diff line change 11{
2- "name" : " adguard- filters-compiler" ,
3- "version" : " 2 .0.6 " ,
2+ "name" : " @ adguard/ filters-compiler" ,
3+ "version" : " 3 .0.0 " ,
44 "description" : " AdGuard filters compiler" ,
55 "homepage" : " http://adguard.com" ,
66 "type" : " module" ,
2121 "increment" : " pnpm version patch --no-git-tag-version" ,
2222 "build-txt" : " node tasks/build-txt.mjs" ,
2323 "build-schemas" : " node --experimental-specifier-resolution=node tasks/build-schemas/index.js" ,
24- "prepare" : " husky install"
24+ "prepare" : " husky install" ,
25+ "tgz" : " pnpm pack --out filters-compiler.tgz"
2526 },
2627 "engines" : {
2728 "node" : " >=20"
You can’t perform that action at this time.
0 commit comments