ac-file-extensions 2.0.15 → 2.0.18

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,9 @@
1
+ # Code Owners
2
+ #
3
+ # This file defines who is responsible for code in this repository.
4
+ # Reviews from code owners are automatically requested for pull requests.
5
+ #
6
+ # More info: https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners
7
+
8
+ # Default owner for everything in the repo
9
+ * @AdmiralCloud/ac-maintainer-backend
package/CHANGELOG.md CHANGED
@@ -1,6 +1,42 @@
1
1
 
2
- ## [2.0.15](https://github.com/admiralcloud/ac-file-extensions/compare/v2.0.14..v2.0.15) (2025-11-12 16:47:25)
2
+ ## [2.0.18](https://github.com/admiralcloud/ac-file-extensions/compare/v2.0.17..v2.0.18) (2026-02-24 16:11:59)
3
+
4
+
5
+ ### Bug Fix
6
+
7
+ * **Misc:** Package updates | MP | [ac176d195348e6792adf12b11c11378f8ec73f9e](https://github.com/admiralcloud/ac-file-extensions/commit/ac176d195348e6792adf12b11c11378f8ec73f9e)
8
+ Package updates incl ESLint 9 -> 10 and lint fixes
9
+ Related issues: [browse/master#master](https://admiralcloud.atlassian.net/browse/master)
10
+
11
+ ## [2.0.17](https://github.com/admiralcloud/ac-file-extensions/compare/v2.0.16..v2.0.17) (2026-01-23 13:41:16)
12
+
3
13
 
14
+ ### Bug Fix
15
+
16
+ * **App:** Package updates | MP | [8e0990661628d9d208d0964f26846d7d6d0c4c8e](https://github.com/admiralcloud/ac-file-extensions/commit/8e0990661628d9d208d0964f26846d7d6d0c4c8e)
17
+ Package updates
18
+ Related issues: [browse/master#master](https://admiralcloud.atlassian.net/browse/master)
19
+ * **App:** add more cad file mimetypes | VD | [09a90420e85205edec7eb03cd99d6d650fa11417](https://github.com/admiralcloud/ac-file-extensions/commit/09a90420e85205edec7eb03cd99d6d650fa11417)
20
+ add more cad file mimetypes
21
+ Related issues:
22
+ * **App:** add step/dxf file extensions | VD | [a9dd73eb0fc08988e5be61b8c4c3aefd58b202a9](https://github.com/admiralcloud/ac-file-extensions/commit/a9dd73eb0fc08988e5be61b8c4c3aefd58b202a9)
23
+ add step/dxf file extensions
24
+ Related issues: [browse/master#master](https://admiralcloud.atlassian.net/browse/master)
25
+ ### Chores
26
+
27
+ * **release:** v2.0.15 [ci skip] | [b6fd313a9cd36371ddee7cb4c6ae889402499a28](https://github.com/admiralcloud/ac-file-extensions/commit/b6fd313a9cd36371ddee7cb4c6ae889402499a28)
28
+
29
+ * **release:** v2.0.14 [ci skip] | [d7b146dd9251b43f1084bdc370d3e3dd8acd8e00](https://github.com/admiralcloud/ac-file-extensions/commit/d7b146dd9251b43f1084bdc370d3e3dd8acd8e00)
30
+
31
+
32
+ ## [2.0.16](https://github.com/admiralcloud/ac-file-extensions/compare/v2.0.15..v2.0.16) (2026-01-23 13:38:07)
33
+
34
+ ### Bug Fix
35
+
36
+ * **App:** Package updates | MP | [89942de8679c6eed6a267e761c18da8c9a9ac6f9](https://github.com/admiralcloud/ac-file-extensions/commit/89942de8679c6eed6a267e761c18da8c9a9ac6f9)
37
+ Package updates
38
+
39
+ ## [2.0.15](https://github.com/admiralcloud/ac-file-extensions/compare/v2.0.14..v2.0.15) (2025-11-12 16:47:25)
4
40
 
5
41
  ### Bug Fix
6
42
 
package/Makefile CHANGED
@@ -1,5 +1,5 @@
1
1
  lint-fix:
2
- ./node_modules/.bin/eslint "sources/**" --fix
2
+ ./node_modules/.bin/eslint --fix
3
3
 
4
4
  commit:
5
5
  @node ./node_modules/ac-semantic-release/lib/commit.js
package/SECURITY.md ADDED
@@ -0,0 +1,22 @@
1
+ # Security Policy
2
+
3
+ ## Supported Versions
4
+
5
+ We only provide security updates for the latest version of this project.
6
+
7
+ If you are using an older version, please upgrade to the latest release to receive security fixes.
8
+
9
+ ## Reporting a Vulnerability
10
+
11
+ If you discover a security vulnerability, please report it by creating a GitHub issue in this repository.
12
+
13
+ Please include the following information:
14
+
15
+ - Description of the vulnerability
16
+ - Steps to reproduce the issue
17
+ - Potential impact
18
+ - Any suggested fixes (if you have them)
19
+
20
+ We will review your report and respond as soon as possible.
21
+
22
+ Thank you for helping keep AdmiralCloud and our users safe!
@@ -0,0 +1,34 @@
1
+ const globals = require('globals')
2
+
3
+ module.exports = [
4
+ {
5
+ files: ['index.js', 'test/test.js'],
6
+ languageOptions: {
7
+ ecmaVersion: 2022,
8
+ sourceType: 'module',
9
+ globals: {
10
+ ...globals.commonjs,
11
+ ...globals.es2015,
12
+ ...globals.node,
13
+ expect: 'readonly',
14
+ describe: 'readonly',
15
+ it: 'readonly'
16
+ }
17
+ },
18
+ rules: {
19
+ 'no-const-assign': 'error',
20
+ 'space-before-function-paren': 'off',
21
+ 'no-extra-semi': 'off',
22
+ 'object-curly-spacing': ['error', 'always'],
23
+ 'brace-style': ['error', 'stroustrup', { allowSingleLine: true }],
24
+ 'block-spacing': 'error',
25
+ 'no-useless-escape': 'off',
26
+ 'no-console': ['warn', { allow: ['warn', 'error'] }],
27
+ 'no-unused-vars': 'error',
28
+ 'eqeqeq': 'error',
29
+ 'no-var': 'error',
30
+ 'curly': 'error',
31
+ 'prefer-const': ['error', { ignoreReadBeforeAssign: true }]
32
+ }
33
+ }
34
+ ]
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ac-file-extensions",
3
3
  "repository": "https://github.com/AdmiralCloud/ac-file-extensions",
4
- "version": "2.0.15",
4
+ "version": "2.0.18",
5
5
  "description": "Creates a list of file extensions and their \"real\" names",
6
6
  "main": "index.js",
7
7
  "scripts": {
@@ -10,15 +10,16 @@
10
10
  },
11
11
  "author": "Mark Poepping (https://www.admiralcloud.com)",
12
12
  "contributors": [
13
- "Florian Timme/AdmiralCloud"
13
+ "Virginijus Digrys/AdmiralCloud"
14
14
  ],
15
15
  "license": "MIT",
16
16
  "dependencies": {
17
- "ac-semantic-release": "^0.4.8",
18
- "lodash": "^4.17.21"
17
+ "ac-semantic-release": "^0.4.10",
18
+ "lodash": "^4.17.23"
19
19
  },
20
20
  "devDependencies": {
21
- "eslint": "^9.37.0"
21
+ "eslint": "^10.0.2",
22
+ "globals": "^17.3.0"
22
23
  },
23
24
  "packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
24
25
  }
package/.eslintrc.js DELETED
@@ -1,27 +0,0 @@
1
- module.exports = {
2
- root: true,
3
- 'env': {
4
- 'commonjs': true,
5
- 'es6': true,
6
- 'node': true
7
- },
8
- 'extends': 'eslint:recommended',
9
- 'globals': {
10
- 'Atomics': 'readonly',
11
- 'SharedArrayBuffer': 'readonly',
12
- 'GlobalHelper': 'readonly',
13
- 'acapi': 'readonly'
14
- },
15
- 'parserOptions': {
16
- 'ecmaVersion': 2018
17
- },
18
- 'rules': {
19
- "space-before-function-paren": 0,
20
- "no-extra-semi": 0,
21
- "object-curly-spacing": ["error", "always"],
22
- "brace-style": ["error", "stroustrup", { "allowSingleLine": true }],
23
- "no-useless-escape": 0,
24
- "standard/no-callback-literal": 0,
25
- "new-cap": 0
26
- },
27
- };