apify-test-tools 0.8.0 → 0.8.1-beta.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.
@@ -41,7 +41,7 @@ jobs:
41
41
  changelog: ${{ steps.release_metadata.outputs.changelog }}
42
42
  release_notes: ${{ steps.release_metadata.outputs.release_notes }}
43
43
  steps:
44
- - uses: apify/workflows/git-cliff-release@main
44
+ - uses: apify/actions/git-cliff-release@v1.1.2
45
45
  name: Prepare release metadata
46
46
  id: release_metadata
47
47
  with:
@@ -55,7 +55,7 @@ jobs:
55
55
  name: Update changelog
56
56
  runs-on: ubuntu-latest
57
57
  outputs:
58
- changelog_commitish: ${{ steps.commit.outputs.commit_long_sha || github.sha }}
58
+ changelog_commitish: ${{ steps.commit.outputs.commit_long_sha }}
59
59
  steps:
60
60
  - name: Checkout repository
61
61
  uses: actions/checkout@v6
@@ -79,8 +79,7 @@ jobs:
79
79
 
80
80
  - name: Commit changes
81
81
  id: commit
82
- uses: EndBug/add-and-commit@v10
82
+ uses: apify/actions/signed-commit@v1.0.0
83
83
  with:
84
- author_name: Apify Release Bot
85
- author_email: noreply@apify.com
86
84
  message: 'chore(release): Update changelog and package version [skip ci]'
85
+ github-token: ${{ secrets.APIFY_SERVICE_ACCOUNT_GITHUB_TOKEN }}
@@ -71,7 +71,7 @@ jobs:
71
71
  runs-on: ubuntu-latest
72
72
  steps:
73
73
  - name: Execute publish workflow
74
- uses: apify/workflows/execute-workflow@main
74
+ uses: apify/actions/execute-workflow@v1.1.2
75
75
  with:
76
76
  workflow: manual_publish_to_npm.yaml
77
77
  inputs: >
@@ -48,7 +48,7 @@ jobs:
48
48
  runs-on: ubuntu-latest
49
49
  steps:
50
50
  - name: Execute publish workflow
51
- uses: apify/workflows/execute-workflow@main
51
+ uses: apify/actions/execute-workflow@v1.1.2
52
52
  with:
53
53
  workflow: manual_publish_to_npm.yaml
54
54
  inputs: >
package/CHANGELOG.md CHANGED
@@ -2,6 +2,15 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ <!-- git-cliff-unreleased-start -->
6
+ ## 0.8.1 - **not yet released**
7
+
8
+ ### 🐛 Bug Fixes
9
+
10
+ - Use long commit SHA in release workflow [internal] ([#86](https://github.com/apify/apify-test-tools/pull/86)) ([123a8d0](https://github.com/apify/apify-test-tools/commit/123a8d008f730c1cf4a144e4a5367ad4075ee232)) by [@fnesveda](https://github.com/fnesveda)
11
+
12
+
13
+ <!-- git-cliff-unreleased-end -->
5
14
  ## [0.8.0](https://github.com/apify/apify-test-tools/releases/tag/v0.8.0) (2026-05-12)
6
15
 
7
16
  ### 🚀 Features
package/package.json CHANGED
@@ -1,63 +1,63 @@
1
1
  {
2
- "name": "apify-test-tools",
3
- "version": "0.8.0",
4
- "type": "module",
5
- "description": "TBD",
6
- "repository": {
7
- "type": "git",
8
- "url": "https://github.com/apify/apify-test-tools.git"
9
- },
10
- "engines": {
11
- "node": ">=18.0.0"
12
- },
13
- "bin": {
14
- "apify-test-tools": "dist/bin/main.js"
15
- },
16
- "types": "./dist/index.d.ts",
17
- "main": "./dist/lib/lib.js",
18
- "dependencies": {
19
- "@apify/consts": "^2.43.0",
20
- "@slack/web-api": "^7.9.2",
21
- "apify-client": "^2.22.2",
22
- "yargs": "^18.0.0"
23
- },
24
- "devDependencies": {
25
- "@apify/eslint-config": "^1.0.0",
26
- "@apify/tsconfig": "^0.1.1",
27
- "@types/node": "^24.0.0",
28
- "@types/yargs": "^17.0.33",
29
- "eslint": "^9.29.0",
30
- "eslint-config-prettier": "^10.1.5",
31
- "globals": "^17.0.0",
32
- "prettier": "^3.5.3",
33
- "tsx": "^4.20.3",
34
- "typescript": "^5.9.3",
35
- "typescript-eslint": "^8.34.1",
36
- "vitest": "^3.2.4",
37
- "knip": "^5.65.0",
38
- "husky": "^9.0.11",
39
- "lint-staged": "^15.2.2"
40
- },
41
- "peerDependencies": {
42
- "vitest": ">=3.2.4"
43
- },
44
- "scripts": {
45
- "start": "npm run dist/bin/main.js",
46
- "start:dev": "GITHUB_WORKSPACE=local-clone tsx bin/main.ts",
47
- "build": "tsc && chmod +x ./dist/bin/main.js",
48
- "lint": "eslint",
49
- "lint:fix": "eslint --fix",
50
- "format": "prettier --write .",
51
- "format:check": "prettier --check .",
52
- "type-check": "tsc --noEmit",
53
- "test": "vitest run",
54
- "check-unused": "npx knip",
55
- "prepare": "husky .husky || true"
56
- },
57
- "lint-staged": {
58
- "*.js": "eslint",
59
- "*.ts": "eslint"
60
- },
61
- "author": "oklinov",
62
- "license": "ISC"
2
+ "name": "apify-test-tools",
3
+ "version": "0.8.1-beta.1",
4
+ "type": "module",
5
+ "description": "TBD",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/apify/apify-test-tools.git"
9
+ },
10
+ "engines": {
11
+ "node": ">=18.0.0"
12
+ },
13
+ "bin": {
14
+ "apify-test-tools": "dist/bin/main.js"
15
+ },
16
+ "types": "./dist/index.d.ts",
17
+ "main": "./dist/lib/lib.js",
18
+ "dependencies": {
19
+ "@apify/consts": "^2.43.0",
20
+ "@slack/web-api": "^7.9.2",
21
+ "apify-client": "^2.22.2",
22
+ "yargs": "^18.0.0"
23
+ },
24
+ "devDependencies": {
25
+ "@apify/eslint-config": "^1.0.0",
26
+ "@apify/tsconfig": "^0.1.1",
27
+ "@types/node": "^24.0.0",
28
+ "@types/yargs": "^17.0.33",
29
+ "eslint": "^9.29.0",
30
+ "eslint-config-prettier": "^10.1.5",
31
+ "globals": "^17.0.0",
32
+ "prettier": "^3.5.3",
33
+ "tsx": "^4.20.3",
34
+ "typescript": "^5.9.3",
35
+ "typescript-eslint": "^8.34.1",
36
+ "vitest": "^3.2.4",
37
+ "knip": "^5.65.0",
38
+ "husky": "^9.0.11",
39
+ "lint-staged": "^15.2.2"
40
+ },
41
+ "peerDependencies": {
42
+ "vitest": ">=3.2.4"
43
+ },
44
+ "scripts": {
45
+ "start": "npm run dist/bin/main.js",
46
+ "start:dev": "GITHUB_WORKSPACE=local-clone tsx bin/main.ts",
47
+ "build": "tsc && chmod +x ./dist/bin/main.js",
48
+ "lint": "eslint",
49
+ "lint:fix": "eslint --fix",
50
+ "format": "prettier --write .",
51
+ "format:check": "prettier --check .",
52
+ "type-check": "tsc --noEmit",
53
+ "test": "vitest run",
54
+ "check-unused": "npx knip",
55
+ "prepare": "husky .husky || true"
56
+ },
57
+ "lint-staged": {
58
+ "*.js": "eslint",
59
+ "*.ts": "eslint"
60
+ },
61
+ "author": "oklinov",
62
+ "license": "ISC"
63
63
  }