@thi.ng/geom-closest-point 2.1.157 → 2.1.158

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +3 -130
  2. package/package.json +6 -7
package/CHANGELOG.md CHANGED
@@ -1,9 +1,11 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2025-01-21T15:46:52Z
3
+ - **Last updated**: 2025-01-23T13:39:11Z
4
4
  - **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
5
5
 
6
6
  All notable changes to this project will be documented in this file.
7
+ Only versions published since **2022-01-01** are listed here.
8
+ Please consult the Git history for older version information.
7
9
  See [Conventional Commits](https://conventionalcommits.org/) for commit guidelines.
8
10
 
9
11
  **Note:** Unlisted _patch_ versions only involve non-code or otherwise excluded changes
@@ -26,132 +28,3 @@ and/or version bumps of transitive dependencies.
26
28
  #### ♻️ Refactoring
27
29
 
28
30
  - update all tests (packages A-S) ([e3085e4](https://github.com/thi-ng/umbrella/commit/e3085e4))
29
-
30
- ## [2.1.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/geom-closest-point@2.1.0) (2021-11-17)
31
-
32
- #### 🚀 Features
33
-
34
- - Using workspaces for local tools ([bf7a404](https://github.com/thi-ng/umbrella/commit/bf7a404))
35
- Improving the overall build ergonomics
36
- - introduced a tools workspaces
37
- - imported it in all needed packages/examples
38
- - inclusive project root
39
-
40
- #### ♻️ Refactoring
41
-
42
- - testrunner to binary ([4ebbbb2](https://github.com/thi-ng/umbrella/commit/4ebbbb2))
43
- this commit reverts (partly) changes made in:
44
- ef346d7a8753590dc9094108a3d861a8dbd5dd2c
45
- overall purpose is better testament ergonomics:
46
- instead of having to pass NODE_OPTIONS with every invocation
47
- having a binary to handle this for us.
48
-
49
- ### [2.0.9](https://github.com/thi-ng/umbrella/tree/@thi.ng/geom-closest-point@2.0.9) (2021-11-10)
50
-
51
- #### ♻️ Refactoring
52
-
53
- - update all countdown loops ([a5f374b](https://github.com/thi-ng/umbrella/commit/a5f374b))
54
-
55
- ### [2.0.1](https://github.com/thi-ng/umbrella/tree/@thi.ng/geom-closest-point@2.0.1) (2021-10-13)
56
-
57
- #### ♻️ Refactoring
58
-
59
- - update imports in all pkgs ([5fa2b6f](https://github.com/thi-ng/umbrella/commit/5fa2b6f))
60
- - add .js suffix for all relative imports
61
- - update imports in all tests/pkgs ([effd591](https://github.com/thi-ng/umbrella/commit/effd591))
62
-
63
- # [2.0.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/geom-closest-point@2.0.0) (2021-10-12)
64
-
65
- #### 🛑 Breaking changes
66
-
67
- - major update of ALL pkgs (export maps, ESM only) ([0d1d6ea](https://github.com/thi-ng/umbrella/commit/0d1d6ea))
68
- - BREAKING CHANGE: discontinue CommonJS & UMD versions
69
- - only ESM modules will be published from now on
70
- - CJS obsolete due to ESM support in recent versions of node:
71
- - i.e. launch NodeJS via:
72
- - `node --experimental-specifier-resolution=node --experimental-repl-await`
73
- - in the node REPL use `await import(...)` instead of `require()`
74
- - UMD obsolete due to widespread browser support for ESM
75
- Also:
76
- - normalize/restructure/reorg all package.json files
77
- - cleanup all build scripts, remove obsolete
78
- - switch from mocha to [@thi.ng/testament](https://github.com/thi-ng/umbrella/tree/main/packages/testament) for all tests
79
-
80
- #### ♻️ Refactoring
81
-
82
- - update all tests in _all_ pkgs ([8b582bc](https://github.com/thi-ng/umbrella/commit/8b582bc))
83
- - update all to use [@thi.ng/testament](https://github.com/thi-ng/umbrella/tree/main/packages/testament)
84
- - update all test stubs ([f2d6d53](https://github.com/thi-ng/umbrella/commit/f2d6d53))
85
- - update imports ([a2f825d](https://github.com/thi-ng/umbrella/commit/a2f825d))
86
-
87
- ### [0.5.4](https://github.com/thi-ng/umbrella/tree/@thi.ng/geom-closest-point@0.5.4) (2020-12-07)
88
-
89
- #### ♻️ Refactoring
90
-
91
- - update type-only imports in various tests/pkgs ([3fd9c24](https://github.com/thi-ng/umbrella/commit/3fd9c24))
92
-
93
- ## [0.5.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/geom-closest-point@0.5.0) (2020-09-22)
94
-
95
- #### 🚀 Features
96
-
97
- - add support for custom dist fn ([95557f6](https://github.com/thi-ng/umbrella/commit/95557f6))
98
-
99
- #### 🩹 Bug fixes
100
-
101
- - update closestPointPolyline() ([1358bac](https://github.com/thi-ng/umbrella/commit/1358bac))
102
- - add check if at least a single closest point has been found
103
-
104
- ## [0.4.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/geom-closest-point@0.4.0) (2020-09-13)
105
-
106
- #### 🚀 Features
107
-
108
- - add ellipse support, restructure pkg ([d331b26](https://github.com/thi-ng/umbrella/commit/d331b26))
109
- - add `closestPointEllipse()`
110
-
111
- #### 🩹 Bug fixes
112
-
113
- - use alt algorithm closestPointEllipse() ([6b3d00f](https://github.com/thi-ng/umbrella/commit/6b3d00f))
114
- - new approach has no weird edge cases as previous
115
-
116
- #### ♻️ Refactoring
117
-
118
- - update deps, imports, use new Fn types ([dcef770](https://github.com/thi-ng/umbrella/commit/dcef770))
119
-
120
- ### [0.3.7](https://github.com/thi-ng/umbrella/tree/@thi.ng/geom-closest-point@0.3.7) (2019-08-21)
121
-
122
- #### ♻️ Refactoring
123
-
124
- - update closestPointRect/AABB (re-use) ([0c33878](https://github.com/thi-ng/umbrella/commit/0c33878))
125
- - extract closestBoxEdge()
126
-
127
- ## [0.3.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/geom-closest-point@0.3.0) (2019-07-07)
128
-
129
- #### 🚀 Features
130
-
131
- - enable TS strict compiler flags (refactor) ([b6b69e6](https://github.com/thi-ng/umbrella/commit/b6b69e6))
132
-
133
- #### 🩹 Bug fixes
134
-
135
- - update polyline & point array fns ([c5b4757](https://github.com/thi-ng/umbrella/commit/c5b4757))
136
- - type hints (TS 3.5.2) ([fa146d7](https://github.com/thi-ng/umbrella/commit/fa146d7))
137
-
138
- #### ♻️ Refactoring
139
-
140
- - TS strictNullChecks, update return types ([f1b8ef9](https://github.com/thi-ng/umbrella/commit/f1b8ef9))
141
-
142
- ### [0.2.3](https://github.com/thi-ng/umbrella/tree/@thi.ng/geom-closest-point@0.2.3) (2019-05-22)
143
-
144
- #### 🩹 Bug fixes
145
-
146
- - flip sign of plane W component, extract distToPlane() ([74dbcb0](https://github.com/thi-ng/umbrella/commit/74dbcb0))
147
-
148
- ## [0.2.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/geom-closest-point@0.2.0) (2019-04-15)
149
-
150
- #### 🚀 Features
151
-
152
- - add fns for more shape types ([5ae2887](https://github.com/thi-ng/umbrella/commit/5ae2887))
153
- - closestPointLine
154
- - distToLine
155
- - closestPointPlane
156
- - closestPointCircle/Sphere
157
- - closestPointAABB/Rect
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/geom-closest-point",
3
- "version": "2.1.157",
3
+ "version": "2.1.158",
4
4
  "description": "2D / 3D closest point / proximity helpers",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -40,15 +40,14 @@
40
40
  "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
41
41
  },
42
42
  "dependencies": {
43
- "@thi.ng/api": "^8.11.17",
44
- "@thi.ng/math": "^5.11.17",
45
- "@thi.ng/vectors": "^7.12.17"
43
+ "@thi.ng/api": "^8.11.18",
44
+ "@thi.ng/math": "^5.11.18",
45
+ "@thi.ng/vectors": "^7.12.18"
46
46
  },
47
47
  "devDependencies": {
48
- "@microsoft/api-extractor": "^7.48.1",
49
48
  "esbuild": "^0.24.2",
50
49
  "typedoc": "^0.27.6",
51
- "typescript": "^5.7.2"
50
+ "typescript": "^5.7.3"
52
51
  },
53
52
  "keywords": [
54
53
  "2d",
@@ -107,5 +106,5 @@
107
106
  ],
108
107
  "year": 2018
109
108
  },
110
- "gitHead": "22f6d518aed5951bb37b406c8ae85a6c3e6be517\n"
109
+ "gitHead": "b92b48abda9941d608be8a2e1c83447e679a6f79\n"
111
110
  }