Skip to content

Commit 024649a

Browse files
chore(release): 1.0.0-beta.1 [skip ci]
# 1.0.0-beta.1 (2025-04-18) ### Bug Fixes * add contents write permission to bump-version workflow for git push ([044a408](044a408)) * add git user config for GitHub Actions ([f76b5ec](f76b5ec)) * add missing setup steps in release job ([05ca465](05ca465)) * add required permissions for release notes generation ([f02d978](f02d978)) * add write permissions and rename bump job to bump-tag ([fb2ebbb](fb2ebbb)) * convert memory address types from bigint to number for better compatibility ([d2e03d4](d2e03d4)) * correct context access for local_version/npm_version and update npm install to ignore scripts ([4a4ddec](4a4ddec)) * correct output variable and update log message in bump-version workflow ([afbcc90](afbcc90)) * correct spelling of detachDebugger function name ([8fe649e](8fe649e)) * enable automatic release notes generation ([4c1a696](4c1a696)) * improve error logging in build script ([0aaa3dd](0aaa3dd)) * improve previous version detection in revert workflow ([3ab4909](3ab4909)) * improve workflow triggers and release creation ([f5d5b6b](f5d5b6b)) * move GitHub Actions permissions to workflow level ([2b06b79](2b06b79)) * move NODE_AUTH_TOKEN to setup-node step for proper npm authentication ([f45fda6](f45fda6)) * persist compiled files from build step to publish-npm step using workflow artifacts ([8b0b6f8](8b0b6f8)) * push to master branch instead of main in bump-version workflow ([81d1cf9](81d1cf9)) * remove caching from release workflow ([1fa7cb1](1fa7cb1)) * remove redundant build checks and simplify workflow ([821f966](821f966)) * remove redundant npm login step from workflow ([1df3bf6](1df3bf6)) * remove version bump from workflow as it's handled by release tags ([f40f081](f40f081)) * reorganize git operations in bump workflow for better reliability ([64e52ec](64e52ec)) * replace deprecated fail_on_error with fail_level in biome action ([412462d](412462d)) * resolve /Zc:strictStrings compiler errors ([73e586f](73e586f)) * set biome action fail_level to any ([a7dd6c1](a7dd6c1)) * set fetch-depth: 0 for full git history in version bump ([5237ec2](5237ec2)) * setup proper npm authentication in GitHub Actions workflow ([9bc7bce](9bc7bce)) * simplify release workflow and configuration ([b91db32](b91db32)) * specify artifact name and path in download step ([38ea831](38ea831)) * trigger build workflow on release publish ([25dea64](25dea64)) * update .npmignore to only exclude root src directory ([6d7265c](6d7265c)) * update config and ci labels to use proper changed-files syntax ([c6a4eea](c6a4eea)) ### Features * add beta version support and improve CI triggers ([85a06bc](85a06bc)) * add bigint support for memory addresses ([4d22488](4d22488)) * add caching and optimize build steps in GitHub Actions workflow ([9b32a47](9b32a47)) * add CodeQL security analysis to version bump workflow ([f2c3d15](f2c3d15)) * add GitHub release configuration ([8eeac16](8eeac16)) * add revert-version workflow ([51db5ae](51db5ae)) * add support for reverting latest version ([1ddd4ff](1ddd4ff)) * **memory:** introduce typed memory operations and fix writeMemory issues ([505cf6e](505cf6e)) * refactor exports and add default export to src/index.ts [skip ci] ([56c8fdb](56c8fdb))
1 parent cbfa32f commit 024649a

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

package.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "memoryprocess",
3-
"version": "1.0.0-beta",
3+
"version": "1.0.0-beta.1",
44
"description": "Maintained fork of memoryjs with critical fixes.",
55
"main": "lib/index.js",
66
"types": "lib/index.d.ts",
@@ -27,6 +27,11 @@
2727
},
2828
"homepage": "https://github.com/joshmiquel/memoryprocess#readme",
2929
"dependencies": {
30+
"@semantic-release/commit-analyzer": "^13.0.1",
31+
"@semantic-release/git": "^10.0.1",
32+
"@semantic-release/github": "^11.0.1",
33+
"@semantic-release/npm": "^12.0.1",
34+
"@semantic-release/release-notes-generator": "^14.0.3",
3035
"node-addon-api": "8.3.1"
3136
},
3237
"devDependencies": {

0 commit comments

Comments
 (0)