@rlvt/crypt 2.2.0 → 2.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,4 @@
1
1
 
2
- > @rlvt/crypt@2.1.0 build /home/runner/work/node-utils-monorepo/node-utils-monorepo/packages/crypt
2
+ > @rlvt/crypt@2.2.0 build /home/runner/work/node-utils-monorepo/node-utils-monorepo/packages/crypt
3
3
  > npx tsc --project .
4
4
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,37 @@
1
- ## [config-v4.3.0] - 2026-01-15
1
+ ## [config-v4.4.0] - 2026-01-16
2
2
 
3
3
  ### ⚙️ Miscellaneous Tasks
4
4
 
5
- - *(release)* @rlvt/config@4.3.0 [skip ci]
5
+ - Remove totally release-it because replaced by script bash by Corentin Filoche
6
+
7
+ ## [crypt-v2.2.0] - 2026-01-15
8
+
9
+ ### 🚀 Features
10
+
11
+ - Migrate crypt package by vmarchaud
12
+
13
+ ### 🐛 Bug Fixes
14
+
15
+ - Import node types by vmarchaud
16
+ - Edit how git cliff is used by Corentin Filoche
17
+
18
+ ### 💼 Other
19
+
20
+ - *(crypt)* Upgrade deps by Michael Inthilith
21
+
22
+ ### ⚙️ Miscellaneous Tasks
23
+
24
+ - Review by vmarchaud
25
+ - Replace tslint with eslint by vmarchaud
26
+ - *(tooling)* Correctly setup linter by vmarchaud
27
+ - *(all)* Make lerna great again by Michael Inthilith
28
+ - Upgrade repo to use pnpm by vmarchaud
29
+ - Lint repo by vmarchaud
30
+ - Fix release config by vmarchaud
31
+ - Upgrade release-it config for several packages by Corentin Filoche
32
+ - Harmonize configs by Corentin Filoche
33
+ - Optimize the matrix to build in parallel (#81) by Tchoupinax
34
+ - Try to publish crypt by Corentin Filoche
35
+ - Add publication to npm package by Corentin Filoche
36
+ - *(release)* @rlvt/crypt@2.2.0 [skip ci] by rlvt-bot
37
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rlvt/crypt",
3
- "version": "2.2.0",
3
+ "version": "2.3.0",
4
4
  "description": "Crypt functions (encrypt/decrypt)",
5
5
  "main": "build/index.js",
6
6
  "engines": {
@@ -18,7 +18,6 @@
18
18
  "devDependencies": {
19
19
  "@types/node": "^22.19.3",
20
20
  "ava": "^6.4.1",
21
- "release-it": "19.2.3",
22
21
  "ts-node": "^10.9.2"
23
22
  },
24
23
  "ava": {
package/.release-it.json DELETED
@@ -1,23 +0,0 @@
1
- {
2
- "$schema": "https://unpkg.com/release-it@19/schema/release-it.json",
3
- "increment": "minor",
4
- "git": {
5
- "changelog": "git-cliff",
6
- "commit": true,
7
- "commitMessage": "chore(release): @rlvt/crypt@${version} [skip ci]",
8
- "push": true,
9
- "requireCleanWorkingDir": false,
10
- "tag": true,
11
- "tagName": "crypt-v${version}"
12
- },
13
- "github": {
14
- "release": true,
15
- "releaseName": "@rlvt/crypt v${version}"
16
- },
17
- "npm": {
18
- "publish": true
19
- },
20
- "hooks": {
21
- "after:bump": "git-cliff -o CHANGELOG.md"
22
- }
23
- }