Skip to content

Commit bbb2b89

Browse files
authored
Merge branch 'master' into feat/enum-suggested-values
2 parents 9e4875e + 7847948 commit bbb2b89

File tree

11 files changed

+414
-298
lines changed

11 files changed

+414
-298
lines changed

CHANGELOG.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ package | version | changelog
1313
`@apify/dummy-package-for-testing` | 2.2.0 | [CHANGELOG](./packages/dummy/CHANGELOG.md)
1414
`@apify/git` | 2.1.4 | [CHANGELOG](./packages/git/CHANGELOG.md)
1515
`@apify/image_proxy_client` | 2.0.3 | [CHANGELOG](./packages/image_proxy_client/CHANGELOG.md)
16-
`@apify/input_schema` | 3.23.8 | [CHANGELOG](./packages/input_schema/CHANGELOG.md)
17-
`@apify/input_secrets` | 1.2.14 | [CHANGELOG](./packages/input_secrets/CHANGELOG.md)
16+
`@apify/input_schema` | 3.23.10 | [CHANGELOG](./packages/input_schema/CHANGELOG.md)
17+
`@apify/input_secrets` | 1.2.16 | [CHANGELOG](./packages/input_secrets/CHANGELOG.md)
1818
`@apify/json_schemas` | 0.7.0 | [CHANGELOG](./packages/json_schemas/CHANGELOG.md)
1919
`@apify/log` | 2.5.26 | [CHANGELOG](./packages/log/CHANGELOG.md)
20-
`@apify/markdown` | 3.0.38 | [CHANGELOG](./packages/markdown/CHANGELOG.md)
20+
`@apify/markdown` | 3.0.40 | [CHANGELOG](./packages/markdown/CHANGELOG.md)
2121
`@apify/payment_qr_codes` | 0.2.1 | [CHANGELOG](./packages/payment_qr_codes/CHANGELOG.md)
2222
`@apify/pseudo_url` | 2.0.67 | [CHANGELOG](./packages/pseudo_url/CHANGELOG.md)
2323
`@apify/timeout` | 0.3.2 | [CHANGELOG](./packages/timeout/CHANGELOG.md)
24-
`@apify/utilities` | 2.23.0 | [CHANGELOG](./packages/utilities/CHANGELOG.md)
24+
`@apify/utilities` | 2.23.2 | [CHANGELOG](./packages/utilities/CHANGELOG.md)

package-lock.json

Lines changed: 307 additions & 280 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/input_schema/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [3.23.10](https://github.com/apify/apify-shared-js/compare/@apify/[email protected]...@apify/[email protected]) (2025-11-18)
7+
8+
**Note:** Version bump only for package @apify/input_schema
9+
10+
11+
12+
13+
14+
## [3.23.9](https://github.com/apify/apify-shared-js/compare/@apify/[email protected]...@apify/[email protected]) (2025-11-18)
15+
16+
**Note:** Version bump only for package @apify/input_schema
17+
18+
19+
20+
21+
622
## [3.23.8](https://github.com/apify/apify-shared-js/compare/@apify/[email protected]...@apify/[email protected]) (2025-11-11)
723

824
**Note:** Version bump only for package @apify/input_schema

packages/input_schema/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@apify/input_schema",
3-
"version": "3.23.8",
3+
"version": "3.23.10",
44
"description": "Tools and constants shared across Apify projects.",
55
"main": "./dist/cjs/index.cjs",
66
"module": "./dist/esm/index.mjs",
@@ -49,7 +49,7 @@
4949
},
5050
"dependencies": {
5151
"@apify/consts": "^2.47.0",
52-
"@apify/input_secrets": "^1.2.14",
52+
"@apify/input_secrets": "^1.2.16",
5353
"@apify/json_schemas": "^0.7.0",
5454
"acorn-loose": "^8.4.0",
5555
"countries-list": "^3.0.0"

packages/input_secrets/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [1.2.16](https://github.com/apify/apify-shared-js/compare/@apify/[email protected]...@apify/[email protected]) (2025-11-18)
7+
8+
**Note:** Version bump only for package @apify/input_secrets
9+
10+
11+
12+
13+
14+
## [1.2.15](https://github.com/apify/apify-shared-js/compare/@apify/[email protected]...@apify/[email protected]) (2025-11-18)
15+
16+
**Note:** Version bump only for package @apify/input_secrets
17+
18+
19+
20+
21+
622
## [1.2.14](https://github.com/apify/apify-shared-js/compare/@apify/[email protected]...@apify/[email protected]) (2025-11-11)
723

824
**Note:** Version bump only for package @apify/input_secrets

packages/input_secrets/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@apify/input_secrets",
3-
"version": "1.2.14",
3+
"version": "1.2.16",
44
"description": "Package to encrypt and decrypt apify actor input secrets.",
55
"main": "./dist/cjs/index.cjs",
66
"module": "./dist/esm/index.mjs",
@@ -45,7 +45,7 @@
4545
},
4646
"dependencies": {
4747
"@apify/log": "^2.5.26",
48-
"@apify/utilities": "^2.23.0",
48+
"@apify/utilities": "^2.23.2",
4949
"ow": "^0.28.2"
5050
}
5151
}

packages/markdown/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [3.0.40](https://github.com/apify/apify-shared-js/compare/@apify/[email protected]...@apify/[email protected]) (2025-11-18)
7+
8+
**Note:** Version bump only for package @apify/markdown
9+
10+
11+
12+
13+
14+
## [3.0.39](https://github.com/apify/apify-shared-js/compare/@apify/[email protected]...@apify/[email protected]) (2025-11-18)
15+
16+
**Note:** Version bump only for package @apify/markdown
17+
18+
19+
20+
21+
622
## [3.0.38](https://github.com/apify/apify-shared-js/compare/@apify/[email protected]...@apify/[email protected]) (2025-11-11)
723

824
**Note:** Version bump only for package @apify/markdown

packages/markdown/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@apify/markdown",
3-
"version": "3.0.38",
3+
"version": "3.0.40",
44
"description": "Tools and constants shared across Apify projects.",
55
"main": "./dist/cjs/index.cjs",
66
"module": "./dist/esm/index.mjs",
@@ -49,7 +49,7 @@
4949
},
5050
"dependencies": {
5151
"@apify/consts": "^2.47.0",
52-
"@apify/utilities": "^2.23.0",
52+
"@apify/utilities": "^2.23.2",
5353
"marked": "^15.0.0",
5454
"match-all": "^1.2.6"
5555
},

packages/utilities/CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,28 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [2.23.2](https://github.com/apify/apify-shared-js/compare/@apify/[email protected]...@apify/[email protected]) (2025-11-18)
7+
8+
9+
### Bug Fixes
10+
11+
* improve `createHmacSignatureAsync` compatibility with worker-based environments ([#573](https://github.com/apify/apify-shared-js/issues/573)) ([3689d59](https://github.com/apify/apify-shared-js/commit/3689d59514c1183854509fff4133d2da784805bc)), closes [#570](https://github.com/apify/apify-shared-js/issues/570)
12+
13+
14+
15+
16+
17+
## [2.23.1](https://github.com/apify/apify-shared-js/compare/@apify/[email protected]...@apify/[email protected]) (2025-11-18)
18+
19+
20+
### Bug Fixes
21+
22+
* dynamic `require` imports for `crypto` package in HMAC signature function ([#572](https://github.com/apify/apify-shared-js/issues/572)) ([1c55aa5](https://github.com/apify/apify-shared-js/commit/1c55aa56f1e34b99933688ac911812f78906f913))
23+
24+
25+
26+
27+
628
# [2.23.0](https://github.com/apify/apify-shared-js/compare/@apify/[email protected]...@apify/[email protected]) (2025-11-11)
729

830

packages/utilities/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@apify/utilities",
3-
"version": "2.23.0",
3+
"version": "2.23.2",
44
"description": "Tools and constants shared across Apify projects.",
55
"main": "./dist/cjs/index.cjs",
66
"module": "./dist/esm/index.mjs",

0 commit comments

Comments
 (0)