Skip to content

Commit 21a2fb2

Browse files
authored
[Release] Increase version to 0.12.0 (#397)
1 parent fca7bc6 commit 21a2fb2

File tree

4 files changed

+37
-5
lines changed

4 files changed

+37
-5
lines changed

CHANGELOG.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,35 @@
1+
# v0.12.0 Apr 14th, 2025
2+
3+
## Changelog
4+
5+
### Issues
6+
7+
- [#387](https://github.com/nevware21/ts-utils/issues/387) [Bug] Polyfill symbol doesn't work as expected as unique key for an object
8+
- [#389](https://github.com/nevware21/ts-utils/issues/389) [Bug] objCreate doesn't support additional optional properties argument
9+
- [#392](https://github.com/nevware21/ts-utils/issues/392) [Bug] mathMax is defined to use using Math.min
10+
11+
### Commits
12+
13+
- [#378](https://github.com/nevware21/ts-utils/pull/378) Bump mocha from 10.8.2 to 11.2.0
14+
- [#383](https://github.com/nevware21/ts-utils/pull/383) Add objIs and polyObjIs
15+
- [#384](https://github.com/nevware21/ts-utils/pull/384) Add additional Object alias functions
16+
- objPropertyIsEnumerable, objFromEntries, objGetOwnPropertyDescriptors,objGetOwnPropertyNames, objGetOwnPropertySymbols, objIsFrozen, objIsSealed, objPreventExtensions, objIsExtensible
17+
- Add new type check functions
18+
- isMap, isMapLike
19+
- Update symbol polyfill to enable isSymbol
20+
- [#390](https://github.com/nevware21/ts-utils/pull/390) Fixup exports and readme for new functions
21+
- [#391](https://github.com/nevware21/ts-utils/pull/391) Bump to typedoc ^0.28.2, Bump to typescript ~5.2.2
22+
- Use github theme
23+
- tag alias constants as functions
24+
- Bump to typescript ~5.2.2
25+
- remove suppressImplicitAnyIndexErrors
26+
- [#393](https://github.com/nevware21/ts-utils/pull/393) [Bug] mathMax is defined to use using Math.min [#392](https://github.com/nevware21/ts-utils/issues/392)
27+
- Add additional ES5 Math aliases
28+
- mathAbs, mathExp, mathLog, mathAsin, mathAcos, mathAtan, mathAtan2, mathPow, mathSqrt, mathRandom, mathSin, mathCos, mathTan
29+
- [#394](https://github.com/nevware21/ts-utils/pull/394) Add isSet, SetLike, WeakSet and isWeakMap helpers
30+
- [#395](https://github.com/nevware21/ts-utils/pull/395) Add isBigInt, isElement, isEmpty, isInteger, isFiniteNumber
31+
- [#396](https://github.com/nevware21/ts-utils/pull/396) Add isElementLike helper
32+
133
# v0.11.7 Feb 24th, 2025
234

335
## Changelog

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Support for standard JavaScript functions (ES5+) that are not support in all env
1616

1717
### Test Environments
1818

19-
- Node (16, 18, 20)
19+
- Node (16, 18, 20, 22)
2020
- Browser (Chromium - headless)
2121
- Web Worker (Chromium - headless)
2222

@@ -68,7 +68,7 @@ This library plans to maintain ES5 compatibility for all versions of v0.x and v1
6868
### ES(future [6 next, etc])
6969

7070
Future versions of this library starting at version 2.x are planned to lift and remove the internal polyfills to support the new targetted baseline once it is defined.
71-
ie. It may or may not be ES6 depending on the runtime landscape and requests received.
71+
ie. It may or may not be ES2020 depending on the runtime landscape and requests received.
7272

7373
When we release v2.x the supported browser matrix will also shift as required to match the defined language level supported at that time.
7474

@@ -83,7 +83,7 @@ Install the npm packare: `npm install @nevware21/ts-utils --save`
8383
> It is suggested / recommended that you use the following definition in your `package.json` so that you are compatible with any future releases as they become available
8484
> we do not intend to make ANY known breaking changes moving forward until v2.x
8585
> ```json
86-
> "@nevware21/ts-utils": ">= 0.11.8 < 2.x"
86+
> "@nevware21/ts-utils": ">= 0.12.0 < 2.x"
8787
> ```
8888
8989
And then just import the helpers and use them.

lib/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@nevware21/ts-utils",
33
"description": "Common JavaScript/TypeScript helper functions for better minification",
4-
"version": "0.11.8",
4+
"version": "0.12.0",
55
"homepage": "https://github.com/nevware21/ts-utils",
66
"license": "MIT",
77
"author": {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@nevware21/ts-utils",
33
"description": "Common JavaScript/TypeScript helper functions for better minification",
4-
"version": "0.11.8",
4+
"version": "0.12.0",
55
"homepage": "https://github.com/nevware21/ts-utils",
66
"license": "MIT",
77
"author": {

0 commit comments

Comments
 (0)