@wmfs/pg-delta-file 1.81.0 → 1.83.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.
package/.releaserc.json CHANGED
@@ -12,7 +12,56 @@
12
12
  "@semantic-release/git"
13
13
  ],
14
14
  "generateNotes": {
15
- "preset": "angular"
15
+ "preset": "conventionalcommits",
16
+ "presetConfig": {
17
+ "types": [
18
+ {
19
+ "breaking": true,
20
+ "type": "feat!",
21
+ "section": "BREAKING"
22
+ },
23
+ {
24
+ "type": "feat",
25
+ "section": "New Feature(s) :rocket:"
26
+ },
27
+ {
28
+ "type": "fix",
29
+ "section": "Bug Fix(es) :bug:"
30
+ },
31
+ {
32
+ "type": "docs",
33
+ "section": "Documentation Changes :memo:"
34
+ },
35
+ {
36
+ "type": "refactor",
37
+ "section": "Code Refactor :recycle:"
38
+ },
39
+ {
40
+ "type": "test",
41
+ "section": "Tests :alembic:"
42
+ },
43
+ {
44
+ "type": "perf",
45
+ "section": "Performance Improvement(s) :zap:"
46
+ },
47
+ {
48
+ "type": "build",
49
+ "section": "Build system dependencies :hammer:"
50
+ },
51
+ {
52
+ "type": "chore",
53
+ "section": "Chores :pencil2:"
54
+ },
55
+ {
56
+ "type": "ci",
57
+ "section": "CICD Configuration Changes :construction_worker:"
58
+ },
59
+ {
60
+ "type": "style",
61
+ "section": "Code Styling :art:"
62
+ }
63
+ ]
64
+ }
16
65
  },
17
66
  "prepare": [
18
67
  {
package/CHANGELOG.md CHANGED
@@ -1,3 +1,19 @@
1
+ ## [1.83.0](https://github.com/wmfs/pg-delta-file/compare/v1.82.0...v1.83.0) (2025-02-12)
2
+
3
+ ### Build system dependencies :hammer:
4
+
5
+ * **deps-dev:** [sc-29160] Resolve issue with semantic-release changelog notes ([#498](https://github.com/wmfs/pg-delta-file/issues/498)) ([39a5d76](https://github.com/wmfs/pg-delta-file/commit/39a5d76a71ee0a38d6095e215536bcd0576400f7))
6
+ * **deps-dev:** update dependency @wmfs/hl-pg-client to v1.32.0 ([#493](https://github.com/wmfs/pg-delta-file/issues/493)) ([0d7e4dd](https://github.com/wmfs/pg-delta-file/commit/0d7e4ddf3da4271c3a14fdfa95dff71732f4186d))
7
+ * **deps-dev:** update dependency @wmfs/hl-pg-client to v1.33.0 ([#494](https://github.com/wmfs/pg-delta-file/issues/494)) ([6c306f6](https://github.com/wmfs/pg-delta-file/commit/6c306f6380377e78a27d5cdb844660fe3064329c))
8
+ * **deps-dev:** update dependency @wmfs/hl-pg-client to v1.34.0 ([#496](https://github.com/wmfs/pg-delta-file/issues/496)) ([bfbd819](https://github.com/wmfs/pg-delta-file/commit/bfbd81973202a0ecd5389db148cbb1dcd3e70308))
9
+ * **deps-dev:** update dependency mocha to v11 ([#495](https://github.com/wmfs/pg-delta-file/issues/495)) ([377d21a](https://github.com/wmfs/pg-delta-file/commit/377d21a71d436793d4fd62c21e4186196bdfd0ac))
10
+ * **deps-dev:** update dependency mocha to v11.1.0 ([#499](https://github.com/wmfs/pg-delta-file/issues/499)) ([bff13af](https://github.com/wmfs/pg-delta-file/commit/bff13af1c07e21fbeface3c53a2fa3f64c9090b4))
11
+ * **deps-dev:** update dependency semantic-release to v24.2.1 ([#497](https://github.com/wmfs/pg-delta-file/issues/497)) ([a34c961](https://github.com/wmfs/pg-delta-file/commit/a34c961027a273cbdcfdae275009a2c3dabe678a))
12
+ * **deps-dev:** update dependency semantic-release to v24.2.2 ([#500](https://github.com/wmfs/pg-delta-file/issues/500)) ([b662738](https://github.com/wmfs/pg-delta-file/commit/b662738d991f11f4f44be941a83cb7da0bfd3ea2))
13
+ * **deps:** update dependency pg-query-stream to v4.7.2 ([#502](https://github.com/wmfs/pg-delta-file/issues/502)) ([00dbcb0](https://github.com/wmfs/pg-delta-file/commit/00dbcb017845a7734ef6f42590b1c536af872275))
14
+
15
+ # [1.82.0](https://github.com/wmfs/pg-delta-file/compare/v1.81.0...v1.82.0) (2024-11-04)
16
+
1
17
  # [1.81.0](https://github.com/wmfs/pg-delta-file/compare/v1.80.0...v1.81.0) (2024-11-04)
2
18
 
3
19
  # [1.80.0](https://github.com/wmfs/pg-delta-file/compare/v1.79.0...v1.80.0) (2024-11-04)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wmfs/pg-delta-file",
3
- "version": "1.81.0",
3
+ "version": "1.83.0",
4
4
  "description": "Outputs change-only-update CSV files (or “delta” files) that contain all the necessary actions required to re-synchronize rows in a cloned table.",
5
5
  "author": "West Midlands Fire Service",
6
6
  "homepage": "https://github.com/wmfs/pg-delta-file#readme",
@@ -24,22 +24,23 @@
24
24
  "lodash": "4.17.21",
25
25
  "luxon": "3.5.0",
26
26
  "make-dir": "3.1.0",
27
- "pg": "8.8.0",
28
- "pg-query-stream": "4.7.1"
27
+ "pg": "8.13.1",
28
+ "pg-query-stream": "4.7.2"
29
29
  },
30
30
  "devDependencies": {
31
31
  "chai": "4.5.0",
32
32
  "codecov": "3.8.3",
33
- "conventional-changelog-metahub": "4.0.1",
33
+ "conventional-changelog-conventionalcommits": "8.0.0",
34
34
  "cz-conventional-changelog": "3.3.0",
35
35
  "dirty-chai": "2.0.1",
36
- "mocha": "10.8.2",
36
+ "mocha": "11.1.0",
37
37
  "nyc": "17.1.0",
38
- "semantic-release": "24.2.0",
38
+ "semantic-release": "24.2.2",
39
39
  "standard": "17.1.2",
40
40
  "@semantic-release/changelog": "6.0.3",
41
+ "@semantic-release/release-notes-generator": "14.0.3",
41
42
  "@semantic-release/git": "10.0.1",
42
- "@wmfs/hl-pg-client": "1.31.0"
43
+ "@wmfs/hl-pg-client": "1.34.0"
43
44
  },
44
45
  "scripts": {
45
46
  "lint": "standard",