geojs 1.10.7 → 1.10.10

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.
@@ -0,0 +1,11 @@
1
+ name: Lint Commit Messages
2
+ on: [pull_request, push]
3
+
4
+ jobs:
5
+ commitlint:
6
+ runs-on: ubuntu-latest
7
+ steps:
8
+ - uses: actions/checkout@v3
9
+ with:
10
+ fetch-depth: 0
11
+ - uses: wagoid/commitlint-github-action@v5
package/CHANGELOG.md CHANGED
@@ -1,13 +1,29 @@
1
1
  # GeoJS Change Log
2
2
 
3
- ## Version 1.10.5
3
+ ## Version 1.10.9
4
+
5
+ ### Performance Improvements
6
+
7
+ - Speed up converting polybool segments to polygons ([#1239](../../pull/1239))
8
+
9
+ ### Improvements
10
+
11
+ - Easier map debugging ([#1240](../../pull/1240))
12
+
13
+ ## Version 1.10.8
14
+
15
+ ### Improvements
16
+
17
+ - Uncross polygon annotations ([#1236](../../pull/1236))
18
+
19
+ ## Version 1.10.7
4
20
 
5
21
  ### Improvements
6
22
 
7
23
  - Allow using the rdp functions on non-feature polygons ([#1234](../../pull/1234))
8
24
  - Allow annotations to be created regardless of metakeys ([#1235](../../pull/1235))
9
25
 
10
- ## Version 1.10.5
26
+ ## Version 1.10.6
11
27
 
12
28
  ### Bug Fixes
13
29
 
@@ -0,0 +1,24 @@
1
+ module.exports = {
2
+ extends: ['@commitlint/config-conventional'],
3
+ rules: {
4
+ 'subject-case': [0],
5
+ // These are the standard values, but are listed here for easier reference
6
+ 'type-enum': [
7
+ 2,
8
+ 'always',
9
+ [
10
+ 'build',
11
+ 'chore',
12
+ 'ci',
13
+ 'docs',
14
+ 'feat',
15
+ 'fix',
16
+ 'perf',
17
+ 'refactor',
18
+ 'revert',
19
+ 'style',
20
+ 'test'
21
+ ]
22
+ ]
23
+ }
24
+ };