Skip to content

Commit 4dd32bd

Browse files
authored
Release v1.3.10 (#72)
- deps(all): bump versions - logger: only check for PROTOCOL once, #71
1 parent 4d370d9 commit 4dd32bd

File tree

5 files changed

+14
-8
lines changed

5 files changed

+14
-8
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/).
44

55
### Unreleased
66

7+
### [1.3.10] - 2025-06-15
8+
9+
- dep(all): bump versions
10+
- logger: only check for PROTOCOL once (#71)
11+
712
### [1.3.9] - 2025-01-31
813

914
- vm_harness: access local files in plugin directory #68
@@ -227,3 +232,4 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/).
227232
[1.3.7]: https://github.com/haraka/test-fixtures/releases/tag/v1.3.7
228233
[1.3.8]: https://github.com/haraka/test-fixtures/releases/tag/v1.3.8
229234
[1.3.9]: https://github.com/haraka/test-fixtures/releases/tag/v1.3.9
235+
[1.3.10]: https://github.com/haraka/test-fixtures/releases/tag/v1.3.10

CONTRIBUTORS.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Contributors
22

3-
This handcrafted artisinal software is brought to you by:
3+
This handcrafted artisanal software is brought to you by:
44

5-
| <img height="80" src="https://avatars.githubusercontent.com/u/261635?v=4"><br><a href="https://github.com/msimerson">msimerson</a> (<a href="https://github.com/haraka/test-fixtures/commits?author=msimerson">64</a>) | <img height="80" src="https://avatars.githubusercontent.com/u/1432035?v=4"><br><a href="https://github.com/kcberg">kcberg</a> (<a href="https://github.com/haraka/test-fixtures/commits?author=kcberg">1</a>) | <img height="80" src="https://avatars.githubusercontent.com/u/662371?v=4"><br><a href="https://github.com/baudehlo">baudehlo</a> (<a href="https://github.com/haraka/test-fixtures/commits?author=baudehlo">1</a>) | <img height="80" src="https://avatars.githubusercontent.com/u/550490?v=4"><br><a href="https://github.com/smfreegard">smfreegard</a> (<a href="https://github.com/haraka/test-fixtures/commits?author=smfreegard">1</a>) | <img height="80" src="https://avatars.githubusercontent.com/u/203240?v=4"><br><a href="https://github.com/lnedry">lnedry</a> (<a href="https://github.com/haraka/test-fixtures/commits?author=lnedry">1</a>) |
6-
| :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: |
5+
| <img height="80" src="https://avatars.githubusercontent.com/u/261635?v=4"><br><a href="https://github.com/msimerson">msimerson</a> (<a href="https://github.com/haraka/test-fixtures/commits?author=msimerson">65</a>) | <img height="80" src="https://avatars.githubusercontent.com/u/203240?v=4"><br><a href="https://github.com/lnedry">lnedry</a> (<a href="https://github.com/haraka/test-fixtures/commits?author=lnedry">2</a>) | <img height="80" src="https://avatars.githubusercontent.com/u/1432035?v=4"><br><a href="https://github.com/kcberg">kcberg</a> (<a href="https://github.com/haraka/test-fixtures/commits?author=kcberg">1</a>) | <img height="80" src="https://avatars.githubusercontent.com/u/662371?v=4"><br><a href="https://github.com/baudehlo">baudehlo</a> (<a href="https://github.com/haraka/test-fixtures/commits?author=baudehlo">1</a>) | <img height="80" src="https://avatars.githubusercontent.com/u/550490?v=4"><br><a href="https://github.com/smfreegard">smfreegard</a> (<a href="https://github.com/haraka/test-fixtures/commits?author=smfreegard">1</a>) | <img height="80" src="https://avatars.githubusercontent.com/u/3261021?v=4"><br><a href="https://github.com/nickolson">nickolson</a> (<a href="https://github.com/haraka/test-fixtures/commits?author=nickolson">1</a>) |
6+
| :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: |
77

88
<sub>this file is generated by [.release](https://github.com/msimerson/.release).
99
Contribute to this project to get your GitHub profile included here.</sub>

lib/vm_harness.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ function find_haraka_lib(id) {
1616
// For local files in the project root directory
1717
// e.g. "require('./example.js')"
1818
if (id.startsWith('./') && id.endsWith('.js')) {
19-
id = id.substring(2, (id.length - 3))
19+
id = id.substring(2, id.length - 3)
2020
}
2121
for (const dp of dir_paths) {
2222
const dirPath = `${dp}${id}.js`

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"name": "haraka-test-fixtures",
44
"license": "MIT",
55
"description": "Haraka Test Fixtures",
6-
"version": "1.3.9",
6+
"version": "1.3.10",
77
"repository": {
88
"type": "git",
99
"url": "git@github.com:haraka/test-fixtures.git"
@@ -23,8 +23,8 @@
2323
"haraka-constants": "^1.0.7",
2424
"haraka-email-message": "^1.2.5",
2525
"haraka-notes": "^1.1.1",
26-
"haraka-results": "^2.2.5",
27-
"haraka-utils": "^1.1.3"
26+
"haraka-results": "^2.2.6",
27+
"haraka-utils": "^1.1.4"
2828
},
2929
"devDependencies": {
3030
"@haraka/eslint-config": "^2.0.2"

0 commit comments

Comments
 (0)