@protontech/openpgp 6.0.0-beta.2 → 6.0.0-beta.3.patch.1

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/openpgp.d.ts CHANGED
@@ -342,6 +342,7 @@ interface Config {
342
342
  constantTimePKCS1Decryption: boolean;
343
343
  constantTimePKCS1DecryptionSupportedSymmetricAlgorithms: Set<enums.symmetric>;
344
344
  v6Keys: boolean;
345
+ enableParsingV5Entities: boolean;
345
346
  preferredAEADAlgorithm: enums.aead;
346
347
  aeadChunkSizeByte: number;
347
348
  s2kType: enums.s2k.iterated | enums.s2k.argon2;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@protontech/openpgp",
3
3
  "description": "OpenPGP.js is a Javascript implementation of the OpenPGP protocol. This is defined in RFC 4880.",
4
- "version": "6.0.0-beta.2",
4
+ "version": "6.0.0-beta.3.patch.1",
5
5
  "license": "LGPL-3.0+",
6
6
  "homepage": "https://openpgpjs.org/",
7
7
  "engines": {
@@ -62,23 +62,23 @@
62
62
  "postversion": "git push && git push --tags && npm publish"
63
63
  },
64
64
  "devDependencies": {
65
- "@noble/curves": "^1.4.0",
65
+ "@noble/ciphers": "^0.6.0",
66
+ "@noble/curves": "^1.6.0",
66
67
  "@noble/ed25519": "^1.7.3",
67
- "@noble/hashes": "^1.4.0",
68
- "@openpgp/asmcrypto.js": "^3.1.0",
68
+ "@noble/hashes": "^1.5.0",
69
69
  "@openpgp/jsdoc": "^3.6.11",
70
70
  "@openpgp/seek-bzip": "^1.0.5-git",
71
71
  "@openpgp/tweetnacl": "^1.0.4-1",
72
72
  "@openpgp/web-stream-tools": "~0.1.3",
73
73
  "@rollup/plugin-alias": "^5.1.0",
74
- "@rollup/plugin-commonjs": "^25.0.7",
74
+ "@rollup/plugin-commonjs": "^25.0.8",
75
75
  "@rollup/plugin-node-resolve": "^15.2.3",
76
- "@rollup/plugin-replace": "^5.0.5",
76
+ "@rollup/plugin-replace": "^5.0.7",
77
77
  "@rollup/plugin-terser": "^0.4.4",
78
78
  "@rollup/plugin-typescript": "^11.1.6",
79
79
  "@rollup/plugin-wasm": "^6.2.2",
80
- "@types/chai": "^4.3.16",
81
- "@typescript-eslint/parser": "^7.9.0",
80
+ "@types/chai": "^4.3.19",
81
+ "@typescript-eslint/parser": "^7.18.0",
82
82
  "argon2id": "^1.0.1",
83
83
  "benchmark": "^2.1.4",
84
84
  "bn.js": "^5.2.1",
@@ -90,27 +90,27 @@
90
90
  "eslint-config-airbnb": "^19.0.4",
91
91
  "eslint-config-airbnb-base": "^15.0.0",
92
92
  "eslint-config-airbnb-typescript": "^18.0.0",
93
- "eslint-import-resolver-typescript": "^3.6.1",
93
+ "eslint-import-resolver-typescript": "^3.6.3",
94
94
  "eslint-plugin-chai-friendly": "^0.7.4",
95
- "eslint-plugin-import": "^2.29.1",
95
+ "eslint-plugin-import": "^2.30.0",
96
96
  "eslint-plugin-unicorn": "^48.0.1",
97
97
  "fflate": "^0.7.4",
98
98
  "http-server": "^14.1.1",
99
- "karma": "^6.4.3",
99
+ "karma": "^6.4.4",
100
100
  "karma-browserstack-launcher": "^1.6.0",
101
101
  "karma-chrome-launcher": "^3.2.0",
102
102
  "karma-firefox-launcher": "^2.1.3",
103
103
  "karma-mocha": "^2.0.1",
104
104
  "karma-mocha-reporter": "^2.2.5",
105
- "karma-webkit-launcher": "^2.4.0",
106
- "mocha": "^10.4.0",
107
- "playwright": "^1.44.0",
108
- "rollup": "^4.17.2",
109
- "sinon": "^17.0.1",
105
+ "karma-webkit-launcher": "^2.6.0",
106
+ "mocha": "^10.7.3",
107
+ "playwright": "^1.47.0",
108
+ "rollup": "^4.21.2",
109
+ "sinon": "^18.0.1",
110
110
  "ts-node": "^10.9.2",
111
- "tslib": "^2.6.2",
112
- "tsx": "^4.10.4",
113
- "typescript": "^5.5.2",
111
+ "tslib": "^2.7.0",
112
+ "tsx": "^4.19.0",
113
+ "typescript": "^5.5.4",
114
114
  "web-streams-polyfill": "^4.0.0"
115
115
  },
116
116
  "repository": {