OpenFeature Bot
ee236396cd
chore(main): release react-sdk 1.0.1 ( #1235 )
...
🤖 I have created a release *beep* *boop*
---
##
[1.0.1](https://github.com/open-feature/js-sdk/compare/react-sdk-v1.0.0...react-sdk-v1.0.1 )
(2025-08-18)
### 🐛 Bug Fixes
* **react:** re-evaluate flags on re-render to detect silent provider …
([#1226 ](https://github.com/open-feature/js-sdk/issues/1226 ))
([3105595
](3105595926
))
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
Signed-off-by: OpenFeature Bot <109696520+openfeaturebot@users.noreply.github.com>
2025-08-18 16:26:25 +00:00
Michael Beemer
9aab3d053b
chore: remove hardcoded react v1
...
Signed-off-by: Michael Beemer <beeme1mr@users.noreply.github.com>
2025-08-18 11:56:09 -04:00
Michael Beemer
3105595926
fix(react): re-evaluate flags on re-render to detect silent provider … ( #1226 )
...
## This PR
- Added `useEffect` that runs on re-render to re-evaluate the flag value
- Only updates state if the resolved value actually changed (using
`isEqual` comparison)
- Used lazy initialization for `useState` to avoid redundant initial
evaluation
- Added `useCallback` memoization for event handlers
- Fixed `AbortController` scope issue
### Notes
This resolves a subtle issue where the provider state may update without
emitting a change event, leading to confusing results. The `useFlag`
hook sets the initial evaluated value in a `useState`. Since this wasn't
in a closure, this evaluation happened any time the component using the
hook rerendered but the result was essentially ignored. Adding a logging
hook shows that the current results but since this evaluation was made
in an existing `useState`, the result had no effect.
This resolves a subtle issue where the provider state may update without
emitting a change event, leading to stale flag values being displayed.
The `useFlag` hook was evaluating the flag on every re-render (as part
of the `useState` initialization), but because `useState` only uses its
initial value on the first render, these subsequent evaluations were
being discarded. This meant that even though the hook was fetching the
correct updated value from the provider on each re-render, it was
throwing that value away and continuing to display the stale cached
value.
Adding a logging hook would show the correct evaluation happening
(proving the provider had the updated value), but the UI would remain
stuck with the old value because the `useState` was ignoring the
re-evaluated result.
The fix ensures that these re-evaluations on re-render actually update
the component's state when the resolved value changes.
The key insight is that the evaluation WAS happening on every re-render
(due to how useState works), but React was discarding the result. Your
fix makes those evaluations actually matter by checking if the value
changed and updating state accordingly.
Original thread:
https://cloud-native.slack.com/archives/C06E4DE6S07/p1754508917397519
### How to test
I created a test that reproduced the issue, and it failed. I then
implemented the changes and verified that the test passed.
---------
Signed-off-by: Developer <developer@example.com>
Signed-off-by: Michael Beemer <beeme1mr@users.noreply.github.com>
Co-authored-by: Developer <developer@example.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: Lukas Reining <lukas.reining@codecentric.de>
Co-authored-by: Todd Baert <todd.baert@dynatrace.com>
2025-08-18 15:08:51 +00:00
renovate[bot]
1dbbd5161b
chore(deps): update dependency rxjs to v7.8.2 ( #1230 )
...
This PR contains the following updates:
| Package | Change | Age | Confidence |
|---|---|---|---|
| [rxjs](https://rxjs.dev )
([source](https://redirect.github.com/reactivex/rxjs )) | [`7.8.1` ->
`7.8.2`](https://renovatebot.com/diffs/npm/rxjs/7.8.1/7.8.2 ) |
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Release Notes
<details>
<summary>reactivex/rxjs (rxjs)</summary>
###
[`v7.8.2`](https://redirect.github.com/reactivex/rxjs/compare/7.8.1...7.8.2 )
[Compare
Source](https://redirect.github.com/reactivex/rxjs/compare/7.8.1...7.8.2 )
</details>
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Disabled because a matching PR was automerged
previously.
♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/ ).
View the [repository job
log](https://developer.mend.io/github/open-feature/js-sdk ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS43MS4xIiwidXBkYXRlZEluVmVyIjoiNDEuNzEuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-08-15 09:06:37 -04:00
renovate[bot]
2287083de7
chore(deps): update dependency shx to ^0.4.0 ( #1213 )
...
This PR contains the following updates:
| Package | Change | Age | Confidence |
|---|---|---|---|
| [shx](https://redirect.github.com/shelljs/shx ) | [`^0.3.4` ->
`^0.4.0`](https://renovatebot.com/diffs/npm/shx/0.3.4/0.4.0 ) |
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Release Notes
<details>
<summary>shelljs/shx (shx)</summary>
###
[`v0.4.0`](https://redirect.github.com/shelljs/shx/releases/tag/v0.4.0 )
[Compare
Source](https://redirect.github.com/shelljs/shx/compare/v0.3.4...v0.4.0 )
#### ✨ Highlighted changes
- This is based on ShellJS v0.9! This means we bumped the minimum node
version to >= v18.
- Small bash compatibility change to `shx sed`. Now if you invoke `shx
sed -i`, this will not print any output to stdout (this is for
consistency with unix `sed`). Using `shx sed` without the `-i` flag will
still print to stdout as before.
#### What's Changed
- chore: remove codecov devDependency by
[@​nfischer](https://redirect.github.com/nfischer ) in
[https://github.com/shelljs/shx/pull/198 ](https://redirect.github.com/shelljs/shx/pull/198 )
- chore(ci): run tests up to node v16 by
[@​nfischer](https://redirect.github.com/nfischer ) in
[https://github.com/shelljs/shx/pull/197 ](https://redirect.github.com/shelljs/shx/pull/197 )
- chore: rename master -> main by
[@​nfischer](https://redirect.github.com/nfischer ) in
[https://github.com/shelljs/shx/pull/204 ](https://redirect.github.com/shelljs/shx/pull/204 )
- chore: update deps by
[@​nfischer](https://redirect.github.com/nfischer ) in
[https://github.com/shelljs/shx/pull/205 ](https://redirect.github.com/shelljs/shx/pull/205 )
- chore: update CI to include v18 by
[@​nfischer](https://redirect.github.com/nfischer ) in
[https://github.com/shelljs/shx/pull/206 ](https://redirect.github.com/shelljs/shx/pull/206 )
- fix(lint): fixes import order lint warnings by
[@​nfischer](https://redirect.github.com/nfischer ) in
[https://github.com/shelljs/shx/pull/215 ](https://redirect.github.com/shelljs/shx/pull/215 )
- doc: highlight globs and emphasize double quotes by
[@​nfischer](https://redirect.github.com/nfischer ) in
[https://github.com/shelljs/shx/pull/214 ](https://redirect.github.com/shelljs/shx/pull/214 )
- chore: update CI to test against node v20 by
[@​nfischer](https://redirect.github.com/nfischer ) in
[https://github.com/shelljs/shx/pull/212 ](https://redirect.github.com/shelljs/shx/pull/212 )
- docs: change GitHub Actions README badge by
[@​nfischer](https://redirect.github.com/nfischer ) in
[https://github.com/shelljs/shx/pull/216 ](https://redirect.github.com/shelljs/shx/pull/216 )
- chore: keep node < 16 around longer by
[@​nfischer](https://redirect.github.com/nfischer ) in
[https://github.com/shelljs/shx/pull/219 ](https://redirect.github.com/shelljs/shx/pull/219 )
- Bump GitHub workflow action to latest version by
[@​deining](https://redirect.github.com/deining ) in
[https://github.com/shelljs/shx/pull/220 ](https://redirect.github.com/shelljs/shx/pull/220 )
- Update minimist for CVE-2021-44906 by
[@​tomhaines432](https://redirect.github.com/tomhaines432 ) in
[https://github.com/shelljs/shx/pull/218 ](https://redirect.github.com/shelljs/shx/pull/218 )
- chore: add codecov token by
[@​nfischer](https://redirect.github.com/nfischer ) in
[https://github.com/shelljs/shx/pull/222 ](https://redirect.github.com/shelljs/shx/pull/222 )
- chore: remove unsupported node configs from CI by
[@​nfischer](https://redirect.github.com/nfischer ) in
[https://github.com/shelljs/shx/pull/221 ](https://redirect.github.com/shelljs/shx/pull/221 )
- chore: switch to codecov v4 by
[@​nfischer](https://redirect.github.com/nfischer ) in
[https://github.com/shelljs/shx/pull/223 ](https://redirect.github.com/shelljs/shx/pull/223 )
- chore(dependencies): update js-yaml by
[@​nfischer](https://redirect.github.com/nfischer ) in
[https://github.com/shelljs/shx/pull/224 ](https://redirect.github.com/shelljs/shx/pull/224 )
- doc: Fix typo in README by
[@​mpaw](https://redirect.github.com/mpaw ) in
[https://github.com/shelljs/shx/pull/227 ](https://redirect.github.com/shelljs/shx/pull/227 )
- chore: update shelljs and drop old node support by
[@​nfischer](https://redirect.github.com/nfischer ) in
[https://github.com/shelljs/shx/pull/228 ](https://redirect.github.com/shelljs/shx/pull/228 )
- chore: drop non-LTS node versions by
[@​nfischer](https://redirect.github.com/nfischer ) in
[https://github.com/shelljs/shx/pull/229 ](https://redirect.github.com/shelljs/shx/pull/229 )
- chore: drop some dependencies and simplify by
[@​nfischer](https://redirect.github.com/nfischer ) in
[https://github.com/shelljs/shx/pull/230 ](https://redirect.github.com/shelljs/shx/pull/230 )
- chore: update dependencies by
[@​nfischer](https://redirect.github.com/nfischer ) in
[https://github.com/shelljs/shx/pull/231 ](https://redirect.github.com/shelljs/shx/pull/231 )
- fix: add back ShellJS version in --version by
[@​nfischer](https://redirect.github.com/nfischer ) in
[https://github.com/shelljs/shx/pull/232 ](https://redirect.github.com/shelljs/shx/pull/232 )
- Adding a global --negate flag by
[@​SoTrx](https://redirect.github.com/SoTrx ) in
[https://github.com/shelljs/shx/pull/189 ](https://redirect.github.com/shelljs/shx/pull/189 )
- refactor: code cleanup for the --negate flag by
[@​nfischer](https://redirect.github.com/nfischer ) in
[https://github.com/shelljs/shx/pull/233 ](https://redirect.github.com/shelljs/shx/pull/233 )
#### New Contributors
- [@​deining](https://redirect.github.com/deining ) made their
first contribution in
[https://github.com/shelljs/shx/pull/220 ](https://redirect.github.com/shelljs/shx/pull/220 )
- [@​tomhaines432](https://redirect.github.com/tomhaines432 ) made
their first contribution in
[https://github.com/shelljs/shx/pull/218 ](https://redirect.github.com/shelljs/shx/pull/218 )
- [@​mpaw](https://redirect.github.com/mpaw ) made their first
contribution in
[https://github.com/shelljs/shx/pull/227 ](https://redirect.github.com/shelljs/shx/pull/227 )
- [@​SoTrx](https://redirect.github.com/SoTrx ) made their first
contribution in
[https://github.com/shelljs/shx/pull/189 ](https://redirect.github.com/shelljs/shx/pull/189 )
**Full Changelog**:
https://github.com/shelljs/shx/compare/v0.3.4...v0.4.0
</details>
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.
♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/ ).
View the [repository job
log](https://developer.mend.io/github/open-feature/js-sdk ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MC40MC4zIiwidXBkYXRlZEluVmVyIjoiNDEuNzEuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-08-15 09:06:26 -04:00
OpenFeature Bot
04139affcb
chore(main): release server-sdk 1.19.0 ( #1181 )
...
🤖 I have created a release *beep* *boop*
---
##
[1.19.0](https://github.com/open-feature/js-sdk/compare/server-sdk-v1.18.0...server-sdk-v1.19.0 )
(2025-08-14)
### ✨ New Features
* add evaluation-scoped hook data
([#1216 ](https://github.com/open-feature/js-sdk/issues/1216 ))
([07af3a9
](07af3a9eda
))
### 🐛 Bug Fixes
* update core dep
([#1228 ](https://github.com/open-feature/js-sdk/issues/1228 ))
([845d24c
](845d24c5fe
))
### 🧹 Chore
* update node to v20+
([#1203 ](https://github.com/open-feature/js-sdk/issues/1203 ))
([1f33453
](1f33453c23
))
### 📚 Documentation
* Clarify the behavior of setProviderAndWait
([#1180 ](https://github.com/open-feature/js-sdk/issues/1180 ))
([4fe8d87
](4fe8d87a2e
))
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
Signed-off-by: OpenFeature Bot <109696520+openfeaturebot@users.noreply.github.com>
Signed-off-by: Todd Baert <todd.baert@dynatrace.com>
Co-authored-by: Todd Baert <todd.baert@dynatrace.com>
2025-08-14 15:57:34 -04:00
OpenFeature Bot
1e330a2e13
chore(main): release web-sdk 1.6.1 ( #1229 )
...
🤖 I have created a release *beep* *boop*
---
##
[1.6.1](https://github.com/open-feature/js-sdk/compare/web-sdk-v1.6.0...web-sdk-v1.6.1 )
(2025-08-14)
### 🐛 Bug Fixes
* update core dep
([#1228 ](https://github.com/open-feature/js-sdk/issues/1228 ))
([845d24c
](845d24c5fe
))
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
Signed-off-by: OpenFeature Bot <109696520+openfeaturebot@users.noreply.github.com>
2025-08-14 13:37:46 -04:00
Todd Baert
7df8a8eedc
chore: engine version in root
...
Signed-off-by: Todd Baert <todd.baert@dynatrace.com>
2025-08-14 13:28:59 -04:00
Todd Baert
3b3515b601
chore: fix lockfile again
...
Signed-off-by: Todd Baert <todd.baert@dynatrace.com>
2025-08-14 13:18:01 -04:00
Todd Baert
63a1feb213
chore: fix lockfile
...
Signed-off-by: Todd Baert <todd.baert@dynatrace.com>
2025-08-14 13:10:38 -04:00
Todd Baert
845d24c5fe
fix: update core dep ( #1228 )
...
As astutely pointed out by @JasperJuergensen in
https://github.com/open-feature/js-sdk/issues/1227 , we added API surface
in core which we use in the latest web, but did't accordingly update the
min version of core in web.
(I also updated the min core version in server, just because).
Signed-off-by: Todd Baert <todd.baert@dynatrace.com>
2025-08-14 13:03:20 -04:00
OpenFeature Bot
dc1970e717
chore(main): release web-sdk 1.6.0 ( #1182 )
...
🤖 I have created a release *beep* *boop*
---
##
[1.6.0](https://github.com/open-feature/js-sdk/compare/web-sdk-v1.5.0...web-sdk-v1.6.0 )
(2025-08-12)
### ✨ New Features
* add evaluation-scoped hook data
([#1216 ](https://github.com/open-feature/js-sdk/issues/1216 ))
([07af3a9
](07af3a9eda
))
* **web-global-build:** publish web packages to unpkg and jsdelivr
([#1225 ](https://github.com/open-feature/js-sdk/issues/1225 ))
([40a512e
](40a512e212
))
### 📚 Documentation
* Clarify the behavior of setProviderAndWait
([#1180 ](https://github.com/open-feature/js-sdk/issues/1180 ))
([4fe8d87
](4fe8d87a2e
))
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
Signed-off-by: OpenFeature Bot <109696520+openfeaturebot@users.noreply.github.com>
2025-08-12 23:27:08 +02:00
OpenFeature Bot
e6e5ff3edf
chore(main): release core 1.9.0 ( #1219 )
...
🤖 I have created a release *beep* *boop*
---
##
[1.9.0](https://github.com/open-feature/js-sdk/compare/core-v1.8.1...core-v1.9.0 )
(2025-08-10)
### ✨ New Features
* add evaluation-scoped hook data
([#1216 ](https://github.com/open-feature/js-sdk/issues/1216 ))
([07af3a9
](07af3a9eda
))
* support Angular 20
([#1220 ](https://github.com/open-feature/js-sdk/issues/1220 ))
([aa232a9
](aa232a9d6a
))
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
Signed-off-by: OpenFeature Bot <109696520+openfeaturebot@users.noreply.github.com>
2025-08-12 21:08:51 +00:00
Patryk Zdunowski
40a512e212
feat(web-global-build): impl ( #1225 )
...
<!-- Please use this template for your pull request. -->
<!-- Please use the sections that you need and delete other sections -->
## This PR
- Implements a global (IIFE) build for the web.
- Adds support for global distribution via CDN by including `unpkg` and
`jsdelivr` fields in `package.json`.
### Notes
- The global build outputs to `dist/global/index.js`.
- The global bundle is exposed under the global name `OpenFeature`.
### Follow-up Tasks
- Consider adding automated tests or validation for the global bundle.
- If this bundle should be included in a release checklist or CI, link
the appropriate issue here.
### How to test
1. Run `npm run build` and ensure `dist/global/index.js` is generated.
2. Serve the file locally or upload to a CDN and verify that
`window.OpenFeature` is available in the browser console.
### Motivation
Trying to load OpenFeature as a first dependency before browser will
resolve any modules.
---------
Signed-off-by: Patryk Zdunowski <zdunekhere@gmail.com>
2025-08-10 14:24:01 +00:00
OpenFeature Bot
28850b7f6d
chore(main): release angular-sdk 0.0.16 ( #1221 )
2025-07-25 21:18:43 +02:00
Lukas Reining
aa232a9d6a
feat: support Angular 20 ( #1220 )
...
Adds Angular 20 support.
This also remove the custom jest setup as it was not compatible with
Angular 20 and uses builtin support for vitest in Angular 20.
For this, Angular has been removed from the jest setup and the pipeline
runs it separately now.
Fixes #1206
---------
Signed-off-by: Lukas Reining <lukas.reining@codecentric.de>
2025-07-25 18:48:38 +02:00
Michael Beemer
07af3a9eda
feat: add evaluation-scoped hook data ( #1216 )
...
Signed-off-by: Michael Beemer <beeme1mr@users.noreply.github.com>
2025-07-18 15:08:01 -04:00
OpenFeature Bot
d8bd93b6d5
chore(main): release core 1.8.1 ( #1208 )
...
🤖 I have created a release *beep* *boop*
---
##
[1.8.1](https://github.com/open-feature/js-sdk/compare/core-v1.8.0...core-v1.8.1 )
(2025-06-04)
### 🔄 Refactoring
* **telemetry:** update telemetry attributes and remove unused
evaluation data
([#1189 ](https://github.com/open-feature/js-sdk/issues/1189 ))
([3e6bcae
](3e6bcaef0b
))
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
Signed-off-by: OpenFeature Bot <109696520+openfeaturebot@users.noreply.github.com>
2025-06-26 20:15:03 +00:00
renovate[bot]
1b3ac12a35
chore(deps): update dependency eslint-plugin-jsdoc to v50.7.1 ( #1211 )
...
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[eslint-plugin-jsdoc](https://redirect.github.com/gajus/eslint-plugin-jsdoc )
| [`50.7.0` ->
`50.7.1`](https://renovatebot.com/diffs/npm/eslint-plugin-jsdoc/50.7.0/50.7.1 )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Release Notes
<details>
<summary>gajus/eslint-plugin-jsdoc (eslint-plugin-jsdoc)</summary>
###
[`v50.7.1`](https://redirect.github.com/gajus/eslint-plugin-jsdoc/releases/tag/v50.7.1 )
[Compare
Source](https://redirect.github.com/gajus/eslint-plugin-jsdoc/compare/v50.7.0...v50.7.1 )
##### Bug Fixes
- revert are-docs-informative upgrade; fixes
[#​1393](https://redirect.github.com/gajus/eslint-plugin-jsdoc/issues/1393 )
([#​1394](https://redirect.github.com/gajus/eslint-plugin-jsdoc/issues/1394 ))
([99cb131](99cb131ee4
))
</details>
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Enabled.
♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/ ).
View the [repository job
log](https://developer.mend.io/github/open-feature/js-sdk ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MC40MC4zIiwidXBkYXRlZEluVmVyIjoiNDAuNDAuMyIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-06-04 18:54:59 +00:00
Todd Baert
d3bca54979
chore: update workflows to node 20 ( #1209 )
...
I missed a few workflows when I updated the node version. We should
update these for consistency.
Signed-off-by: Todd Baert <todd.baert@dynatrace.com>
2025-06-04 14:54:45 -04:00
renovate[bot]
baf0dfbd5b
chore(deps): update dependency rollup-plugin-dts to v6.2.1 ( #1196 )
...
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[rollup-plugin-dts](https://redirect.github.com/Swatinem/rollup-plugin-dts )
| [`6.1.1` ->
`6.2.1`](https://renovatebot.com/diffs/npm/rollup-plugin-dts/6.1.1/6.2.1 )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Release Notes
<details>
<summary>Swatinem/rollup-plugin-dts (rollup-plugin-dts)</summary>
###
[`v6.2.1`](https://redirect.github.com/Swatinem/rollup-plugin-dts/compare/v6.2.0...v6.2.1 )
[Compare
Source](https://redirect.github.com/Swatinem/rollup-plugin-dts/compare/v6.2.0...v6.2.1 )
###
[`v6.2.0`](https://redirect.github.com/Swatinem/rollup-plugin-dts/blob/HEAD/CHANGELOG.md#620 )
[Compare
Source](https://redirect.github.com/Swatinem/rollup-plugin-dts/compare/v6.1.1...v6.2.0 )
**Features**:
- Support importing json modules
- Return Source Map Differences to Rollup
**Fixes**:
- Unable to find the program when entry points exist intersection
dependency
- Create program for `imports` input file
- Force emit types even when there's errors
- Preserve type members of namespace in re-exported module
- Imports and exports follows type-only
- Import "local types" from "global modules"
- Correctly restore type-only import/export names
**Thank you**:
Features, fixes and improvements in this release have been contributed
by:
- [@​NWYLZW](https://redirect.github.com/NWYLZW )
- [@​castarco](https://redirect.github.com/castarco )
- [@​hyrious](https://redirect.github.com/hyrious )
- [@​andersk](https://redirect.github.com/andersk )
- [@​kricsleo](https://redirect.github.com/kricsleo )
- [@​alan-agius4](https://redirect.github.com/alan-agius4 )
</details>
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Enabled.
♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/ ).
View the [repository job
log](https://developer.mend.io/github/open-feature/js-sdk ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MC4xMS4xOCIsInVwZGF0ZWRJblZlciI6IjQwLjExLjE4IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-06-04 16:34:40 +00:00
renovate[bot]
2fd944d317
chore(deps): update dependency eslint-plugin-jsdoc to v50.7.0 ( #1199 )
...
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[eslint-plugin-jsdoc](https://redirect.github.com/gajus/eslint-plugin-jsdoc )
| [`50.6.14` ->
`50.7.0`](https://renovatebot.com/diffs/npm/eslint-plugin-jsdoc/50.6.14/50.7.0 )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Release Notes
<details>
<summary>gajus/eslint-plugin-jsdoc (eslint-plugin-jsdoc)</summary>
###
[`v50.7.0`](https://redirect.github.com/gajus/eslint-plugin-jsdoc/releases/tag/v50.7.0 )
[Compare
Source](https://redirect.github.com/gajus/eslint-plugin-jsdoc/compare/v50.6.17...v50.7.0 )
##### Features
- **`getJsdocProcessorPlugin`:** add `allowedLanguagesToProcess` option
([#​1392](https://redirect.github.com/gajus/eslint-plugin-jsdoc/issues/1392 ))
([0adbf43](0adbf43b6b
))
###
[`v50.6.17`](https://redirect.github.com/gajus/eslint-plugin-jsdoc/releases/tag/v50.6.17 )
[Compare
Source](https://redirect.github.com/gajus/eslint-plugin-jsdoc/compare/v50.6.16...v50.6.17 )
##### Bug Fixes
- **`require-param`:** update jsdoccomment to support exported
TSFunctionType type; fixes
[#​1386](https://redirect.github.com/gajus/eslint-plugin-jsdoc/issues/1386 )
([#​1389](https://redirect.github.com/gajus/eslint-plugin-jsdoc/issues/1389 ))
([e26a11a](e26a11a399
))
###
[`v50.6.16`](https://redirect.github.com/gajus/eslint-plugin-jsdoc/releases/tag/v50.6.16 )
[Compare
Source](https://redirect.github.com/gajus/eslint-plugin-jsdoc/compare/v50.6.15...v50.6.16 )
##### Bug Fixes
- **`valid-types`:** fix parsing of expressions like
`[@returns](https://redirect.github.com/returns )
{[@​link](https://redirect.github.com/link ) SomeType}`; fixes
[#​1381](https://redirect.github.com/gajus/eslint-plugin-jsdoc/issues/1381 )
([#​1382](https://redirect.github.com/gajus/eslint-plugin-jsdoc/issues/1382 ))
([2bd7242](2bd7242901
))
###
[`v50.6.15`](https://redirect.github.com/gajus/eslint-plugin-jsdoc/releases/tag/v50.6.15 )
[Compare
Source](https://redirect.github.com/gajus/eslint-plugin-jsdoc/compare/v50.6.14...v50.6.15 )
##### Bug Fixes
- **`no-undefined-types`:** avoid eslint 8 error; fixes
[#​1387](https://redirect.github.com/gajus/eslint-plugin-jsdoc/issues/1387 )
([#​1388](https://redirect.github.com/gajus/eslint-plugin-jsdoc/issues/1388 ))
([1bef636](1bef63677e
))
</details>
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Enabled.
♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/ ).
View the [repository job
log](https://developer.mend.io/github/open-feature/js-sdk ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MC4xNi4wIiwidXBkYXRlZEluVmVyIjoiNDAuMzMuNiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-06-04 16:34:07 +00:00
renovate[bot]
3598b5e822
chore(deps): update dependency rollup to v4.41.1 ( #1205 )
...
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [rollup](https://rollupjs.org/ )
([source](https://redirect.github.com/rollup/rollup )) | [`4.40.2` ->
`4.41.1`](https://renovatebot.com/diffs/npm/rollup/4.40.2/4.41.1 ) |
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Release Notes
<details>
<summary>rollup/rollup (rollup)</summary>
###
[`v4.41.1`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4411 )
[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.41.0...v4.41.1 )
*2025-05-24*
##### Bug Fixes
- If a plugin calls `this.resolve` with `skipSelf: true`, subsequent
calls when handling this by the same plugin with same parameters will
return `null` to avoid infinite recursions
([#​5945](https://redirect.github.com/rollup/rollup/issues/5945 ))
##### Pull Requests
- [#​5945](https://redirect.github.com/rollup/rollup/pull/5945 ):
Avoid recursively calling a plugin's resolveId hook with same id and
importer ([@​younggglcy](https://redirect.github.com/younggglcy ),
[@​lukastaegert](https://redirect.github.com/lukastaegert ))
- [#​5963](https://redirect.github.com/rollup/rollup/pull/5963 ):
fix(deps): update swc monorepo (major)
([@​renovate](https://redirect.github.com/renovate )\[bot])
- [#​5964](https://redirect.github.com/rollup/rollup/pull/5964 ):
fix(deps): lock file maintenance minor/patch updates
([@​renovate](https://redirect.github.com/renovate )\[bot])
###
[`v4.41.0`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4410 )
[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.40.2...v4.41.0 )
*2025-05-18*
##### Features
- Detect named exports in more dynamic import scenarios
([#​5954](https://redirect.github.com/rollup/rollup/issues/5954 ))
##### Pull Requests
- [#​5949](https://redirect.github.com/rollup/rollup/pull/5949 ):
ci: use node 24 ([@​btea](https://redirect.github.com/btea ),
[@​lukastaegert](https://redirect.github.com/lukastaegert ))
- [#​5951](https://redirect.github.com/rollup/rollup/pull/5951 ):
chore(deps): update dependency pretty-bytes to v7
([@​renovate](https://redirect.github.com/renovate )\[bot])
- [#​5952](https://redirect.github.com/rollup/rollup/pull/5952 ):
fix(deps): update swc monorepo (major)
([@​renovate](https://redirect.github.com/renovate )\[bot],
[@​lukastaegert](https://redirect.github.com/lukastaegert ))
- [#​5953](https://redirect.github.com/rollup/rollup/pull/5953 ):
chore(deps): lock file maintenance minor/patch updates
([@​renovate](https://redirect.github.com/renovate )\[bot])
- [#​5954](https://redirect.github.com/rollup/rollup/pull/5954 ):
enhance tree-shaking for dynamic imports
([@​TrickyPi](https://redirect.github.com/TrickyPi ),
[@​renovate](https://redirect.github.com/renovate )\[bot],
[@​lukastaegert](https://redirect.github.com/lukastaegert ))
- [#​5957](https://redirect.github.com/rollup/rollup/pull/5957 ):
chore(deps): update dependency lint-staged to v16
([@​renovate](https://redirect.github.com/renovate )\[bot],
[@​lukastaegert](https://redirect.github.com/lukastaegert ))
- [#​5958](https://redirect.github.com/rollup/rollup/pull/5958 ):
fix(deps): update rust crate swc_compiler_base to v20
([@​renovate](https://redirect.github.com/renovate )\[bot],
[@​lukastaegert](https://redirect.github.com/lukastaegert ))
- [#​5959](https://redirect.github.com/rollup/rollup/pull/5959 ):
fix(deps): lock file maintenance minor/patch updates
([@​renovate](https://redirect.github.com/renovate )\[bot],
[@​lukastaegert](https://redirect.github.com/lukastaegert ))
- [#​5960](https://redirect.github.com/rollup/rollup/pull/5960 ):
Use spawn to run CLI tests
([@​lukastaegert](https://redirect.github.com/lukastaegert ))
</details>
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Enabled.
♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/ ).
View the [repository job
log](https://developer.mend.io/github/open-feature/js-sdk ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MC4zMy42IiwidXBkYXRlZEluVmVyIjoiNDAuMzMuNiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-06-04 16:32:59 +00:00
renovate[bot]
52ed31ad96
chore(deps): update dependency esbuild to v0.25.5 ( #1204 )
...
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [esbuild](https://redirect.github.com/evanw/esbuild ) | [`0.25.4` ->
`0.25.5`](https://renovatebot.com/diffs/npm/esbuild/0.25.4/0.25.5 ) |
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Release Notes
<details>
<summary>evanw/esbuild (esbuild)</summary>
###
[`v0.25.5`](https://redirect.github.com/evanw/esbuild/blob/HEAD/CHANGELOG.md#0255 )
[Compare
Source](https://redirect.github.com/evanw/esbuild/compare/v0.25.4...v0.25.5 )
- Fix a regression with `browser` in `package.json`
([#​4187](https://redirect.github.com/evanw/esbuild/issues/4187 ))
The fix to
[#​4144](https://redirect.github.com/evanw/esbuild/issues/4144 ) in
version 0.25.3 introduced a regression that caused `browser` overrides
specified in `package.json` to fail to override relative path names that
end in a trailing slash. That behavior change affected the
`axios@0.30.0` package. This regression has been fixed, and now has test
coverage.
- Add support for certain keywords as TypeScript tuple labels
([#​4192](https://redirect.github.com/evanw/esbuild/issues/4192 ))
Previously esbuild could incorrectly fail to parse certain keywords as
TypeScript tuple labels that are parsed by the official TypeScript
compiler if they were followed by a `?` modifier. These labels included
`function`, `import`, `infer`, `new`, `readonly`, and `typeof`. With
this release, these keywords will now be parsed correctly. Here's an
example of some affected code:
```ts
type Foo = [
value: any,
readonly?: boolean, // This is now parsed correctly
]
```
- Add CSS prefixes for the `stretch` sizing value
([#​4184](https://redirect.github.com/evanw/esbuild/issues/4184 ))
This release adds support for prefixing CSS declarations such as `div {
width: stretch }`. That CSS is now transformed into this depending on
what the `--target=` setting includes:
```css
div {
width: -webkit-fill-available;
width: -moz-available;
width: stretch;
}
```
</details>
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.
♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/ ).
View the [repository job
log](https://developer.mend.io/github/open-feature/js-sdk ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MC4zMy42IiwidXBkYXRlZEluVmVyIjoiNDAuMzMuNiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-06-04 12:33:54 -04:00
Michael Beemer
3e6bcaef0b
refactor(telemetry): update telemetry attributes and remove unused evaluation data ( #1189 )
...
## This PR
- update the evaluation event to match the latest OTel semcon
### Related Issues
Fixes #1188
### Notes
Update the createEvaluationEvent to match the latest OpenTelemetry spec.
Unforutnately, this is a breaking change. I'll denote this in the
release notes but not in the library version. That's because we're
following the experimental OTel spec and the method itself is currently
undocumented except from the generated JS Doc.
It's also worth noting that OTel JS SDK event API doesn't currently
support object as attribute values. @dyladan will update the OTel SDK.
### Follow-up Tasks
Update the ToggleShop.
### How to test
`npm run test`
Signed-off-by: Michael Beemer <beeme1mr@users.noreply.github.com>
2025-06-03 13:51:28 +00:00
renovate[bot]
66a3ce05af
chore(deps): update dependency @types/node to v22.15.23 ( #1198 )
...
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[@types/node](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node )
([source](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ))
| [`22.15.17` ->
`22.15.23`](https://renovatebot.com/diffs/npm/@types%2fnode/22.15.17/22.15.23 )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Enabled.
♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/ ).
View the [repository job
log](https://developer.mend.io/github/open-feature/js-sdk ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MC4xNi4wIiwidXBkYXRlZEluVmVyIjoiNDAuMzMuNiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-05-30 20:46:03 +00:00
renovate[bot]
1cb4a506aa
chore(deps): update dependency prettier to v3.5.3 ( #1195 )
...
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [prettier](https://prettier.io )
([source](https://redirect.github.com/prettier/prettier )) | [`3.4.2` ->
`3.5.3`](https://renovatebot.com/diffs/npm/prettier/3.4.2/3.5.3 ) |
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Release Notes
<details>
<summary>prettier/prettier (prettier)</summary>
###
[`v3.5.3`](https://redirect.github.com/prettier/prettier/compare/3.5.2...b51ba9d46765bcfab714ebca982bd04ad25ae562 )
[Compare
Source](https://redirect.github.com/prettier/prettier/compare/3.5.2...3.5.3 )
###
[`v3.5.2`](https://redirect.github.com/prettier/prettier/blob/HEAD/CHANGELOG.md#352 )
[Compare
Source](https://redirect.github.com/prettier/prettier/compare/3.5.1...3.5.2 )
[diff](https://redirect.github.com/prettier/prettier/compare/3.5.1...3.5.2 )
##### Remove `module-sync` condition
([#​17156](https://redirect.github.com/prettier/prettier/pull/17156 )
by [@​fisker](https://redirect.github.com/fisker ))
In Prettier 3.5.0, [we added `module-sync` condition to
`package.json`](https://prettier.io/blog/2025/02/09/3.5.0#use-esm-entrypoint-for-requireesm-16958-by-tats-u ),
so that `require("prettier")` can use ESM version, but turns out it
doesn't work if CommonJS and ESM plugins both imports builtin plugins.
To solve this problem, we decide simply remove the `module-sync`
condition, so `require("prettier")` will still use the CommonJS version,
we'll revisit until `require(ESM)` feature is more stable.
###
[`v3.5.1`](https://redirect.github.com/prettier/prettier/blob/HEAD/CHANGELOG.md#351 )
[Compare
Source](https://redirect.github.com/prettier/prettier/compare/3.5.0...3.5.1 )
[diff](https://redirect.github.com/prettier/prettier/compare/3.5.0...3.5.1 )
##### Fix CLI crash when cache for old version exists
([#​17100](https://redirect.github.com/prettier/prettier/pull/17100 )
by [@​sosukesuzuki](https://redirect.github.com/sosukesuzuki ))
Prettier 3.5 uses a different cache format than previous versions,
Prettier 3.5.0 crashes when reading existing cache file, Prettier 3.5.1
fixed the problem.
##### Support dockercompose and github-actions-workflow in VSCode
([#​17101](https://redirect.github.com/prettier/prettier/pull/17101 )
by [@​remcohaszing](https://redirect.github.com/remcohaszing ))
Prettier now supports the `dockercompose` and `github-actions-workflow`
languages in Visual Studio Code.
###
[`v3.5.0`](https://redirect.github.com/prettier/prettier/blob/HEAD/CHANGELOG.md#350 )
[Compare
Source](https://redirect.github.com/prettier/prettier/compare/3.4.2...3.5.0 )
[diff](https://redirect.github.com/prettier/prettier/compare/3.4.2...3.5.0 )
🔗 [Release Notes](https://prettier.io/blog/2025/02/09/3.5.0.html )
</details>
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Enabled.
♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/ ).
View the [repository job
log](https://developer.mend.io/github/open-feature/js-sdk ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MC4xMS4xOCIsInVwZGF0ZWRJblZlciI6IjQwLjExLjE4IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-05-30 20:45:45 +00:00
Todd Baert
1f33453c23
chore: update node to v20+ ( #1203 )
...
node v18 is now EOL
Signed-off-by: Todd Baert <todd.baert@dynatrace.com>
2025-05-29 19:38:31 +00:00
OpenFeature Bot
2838d6afce
chore(main): release nestjs-sdk 0.2.5 ( #1183 )
...
🤖 I have created a release *beep* *boop*
---
##
[0.2.5](https://github.com/open-feature/js-sdk/compare/nestjs-sdk-v0.2.4...nestjs-sdk-v0.2.5 )
(2025-05-27)
### ✨ New Features
* adds RequireFlagsEnabled decorator
([#1159 ](https://github.com/open-feature/js-sdk/issues/1159 ))
([59b8fe9
](59b8fe904f
))
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
---------
Signed-off-by: OpenFeature Bot <109696520+openfeaturebot@users.noreply.github.com>
Signed-off-by: Lukas Reining <lukas.reining@codecentric.de>
Co-authored-by: Lukas Reining <lukas.reining@codecentric.de>
2025-05-27 22:08:11 +00:00
Lukas Reining
aadc7a6636
fix: environment for npm publish ( #1202 )
...
Adds the environment for NPM publish step of the pipeline to the correct
job.
Signed-off-by: Lukas Reining <lukas.reining@codecentric.de>
2025-05-27 23:51:57 +02:00
OpenFeature Bot
dae36bba1f
chore(main): release angular-sdk 0.0.15 ( #1201 )
...
🤖 I have created a release *beep* *boop*
---
##
[0.0.15](https://github.com/open-feature/js-sdk/compare/angular-sdk-v0.0.14...angular-sdk-v0.0.15 )
(2025-05-27)
### 🐛 Bug Fixes
* **angular:** update docs
([#1200 ](https://github.com/open-feature/js-sdk/issues/1200 ))
([b6ea588
](b6ea5884f2
))
### Dependencies
* The following workspace dependencies were updated
* devDependencies
* @openfeature/web-sdk bumped from * to 1.5.1
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
---------
Signed-off-by: OpenFeature Bot <109696520+openfeaturebot@users.noreply.github.com>
Signed-off-by: Lukas Reining <lukas.reining@codecentric.de>
Co-authored-by: Lukas Reining <lukas.reining@codecentric.de>
2025-05-27 22:56:32 +02:00
Lukas Reining
b6ea5884f2
fix(angular): update docs ( #1200 )
...
Signed-off-by: Lukas Reining <lukas.reining@codecentric.de>
2025-05-27 22:50:11 +02:00
renovate[bot]
affdecb619
chore(deps): update dependency jest-preset-angular to v14.5.5 ( #1192 )
...
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [jest-preset-angular](https://thymikee.github.io/jest-preset-angular )
([source](https://redirect.github.com/thymikee/jest-preset-angular )) |
[`14.5.1` ->
`14.5.5`](https://renovatebot.com/diffs/npm/jest-preset-angular/14.5.1/14.5.5 )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Release Notes
<details>
<summary>thymikee/jest-preset-angular (jest-preset-angular)</summary>
###
[`v14.5.5`](https://redirect.github.com/thymikee/jest-preset-angular/blob/HEAD/CHANGELOG.md#1455-2025-04-15 )
[Compare
Source](https://redirect.github.com/thymikee/jest-preset-angular/compare/v14.5.4...v14.5.5 )
##### Bug Fixes
- fix: allow name exports for `presets` subpath
([9100baf](https://redirect.github.com/thymikee/jest-preset-angular/commit/9100baf ))
###
[`v14.5.4`](https://redirect.github.com/thymikee/jest-preset-angular/blob/HEAD/CHANGELOG.md#1454-2025-03-31 )
[Compare
Source](https://redirect.github.com/thymikee/jest-preset-angular/compare/v14.5.3...v14.5.4 )
##### Bug Fixes
- fix: warn when using both `isolatedModules` and
`emitDecoratorMetadata`
([#​3029](https://redirect.github.com/thymikee/jest-preset-angular/issues/3029 ))
([51db8f4](https://redirect.github.com/thymikee/jest-preset-angular/commit/51db8f4 )),
closes
[#​3029](https://redirect.github.com/thymikee/jest-preset-angular/issues/3029 )
- update dependency ts-jest to v29.3.0
([1d8415d](https://redirect.github.com/thymikee/jest-preset-angular/commit/1d8415d ))
###
[`v14.5.3`](https://redirect.github.com/thymikee/jest-preset-angular/blob/HEAD/CHANGELOG.md#1453-2025-02-24 )
[Compare
Source](https://redirect.github.com/thymikee/jest-preset-angular/compare/v14.5.2...v14.5.3 )
##### Bug Fixes
- build: update bundle `jit_transform.js`, closes
[#​2979](https://redirect.github.com/thymikee/jest-preset-angular/issues/2979 )
###
[`v14.5.2`](https://redirect.github.com/thymikee/jest-preset-angular/blob/HEAD/CHANGELOG.md#1452-2025-02-21 )
[Compare
Source](https://redirect.github.com/thymikee/jest-preset-angular/compare/v14.5.1...v14.5.2 )
##### Bug Fixes
- fix: transform `js` ESM file from `node_modules`
([b2b3934](https://redirect.github.com/thymikee/jest-preset-angular/commit/b2b3934 )),
closes
[#​2913](https://redirect.github.com/thymikee/jest-preset-angular/issues/2913 )
</details>
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Enabled.
♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/ ).
View the [repository job
log](https://developer.mend.io/github/open-feature/js-sdk ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MC4xMS4xOCIsInVwZGF0ZWRJblZlciI6IjQwLjExLjE4IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-05-26 17:57:01 +00:00
renovate[bot]
f2121671fa
chore(deps): update dependency rxjs to v7.8.2 ( #1193 )
...
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [rxjs](https://rxjs.dev )
([source](https://redirect.github.com/reactivex/rxjs )) | [`7.8.1` ->
`7.8.2`](https://renovatebot.com/diffs/npm/rxjs/7.8.1/7.8.2 ) |
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Release Notes
<details>
<summary>reactivex/rxjs (rxjs)</summary>
###
[`v7.8.2`](https://redirect.github.com/reactivex/rxjs/compare/7.8.1...7.8.2 )
[Compare
Source](https://redirect.github.com/reactivex/rxjs/compare/7.8.1...7.8.2 )
</details>
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Enabled.
♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/ ).
View the [repository job
log](https://developer.mend.io/github/open-feature/js-sdk ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MC4xMS4xOCIsInVwZGF0ZWRJblZlciI6IjQwLjExLjE4IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-05-26 17:53:11 +00:00
OpenFeature Bot
9f887a965c
chore(main): release angular-sdk 0.0.14 ( #1178 )
...
🤖 I have created a release *beep* *boop*
---
##
[0.0.14](https://github.com/open-feature/js-sdk/compare/angular-sdk-v0.0.13...angular-sdk-v0.0.14 )
(2025-05-25)
### 🐛 Bug Fixes
* **angular:** add license and url field to package.json
([b2784f5
](b2784f53b8
))
### Dependencies
* The following workspace dependencies were updated
* devDependencies
* @openfeature/web-sdk bumped from * to 1.5.1
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
---------
Signed-off-by: OpenFeature Bot <109696520+openfeaturebot@users.noreply.github.com>
Signed-off-by: Lukas Reining <lukas.reining@codecentric.de>
Co-authored-by: Lukas Reining <lukas.reining@codecentric.de>
2025-05-25 12:07:48 +02:00
Lukas Reining
b2784f53b8
fix(angular): add license and url field to package.json
...
Signed-off-by: Lukas Reining <lukas.reining@codecentric.de>
2025-05-25 12:00:05 +02:00
renovate[bot]
14761998bf
chore(deps): update dependency eslint-plugin-jsdoc to v50.6.14 ( #1191 )
...
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[eslint-plugin-jsdoc](https://redirect.github.com/gajus/eslint-plugin-jsdoc )
| [`50.6.3` ->
`50.6.14`](https://renovatebot.com/diffs/npm/eslint-plugin-jsdoc/50.6.3/50.6.14 )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Release Notes
<details>
<summary>gajus/eslint-plugin-jsdoc (eslint-plugin-jsdoc)</summary>
###
[`v50.6.14`](https://redirect.github.com/gajus/eslint-plugin-jsdoc/releases/tag/v50.6.14 )
[Compare
Source](https://redirect.github.com/gajus/eslint-plugin-jsdoc/compare/v50.6.13...v50.6.14 )
##### Bug Fixes
- **lines-before-block:** Switch to a whitelist of punctuators
([#​1385](https://redirect.github.com/gajus/eslint-plugin-jsdoc/issues/1385 ))
([0a30832](0a30832b41
))
###
[`v50.6.13`](https://redirect.github.com/gajus/eslint-plugin-jsdoc/releases/tag/v50.6.13 )
[Compare
Source](https://redirect.github.com/gajus/eslint-plugin-jsdoc/compare/v50.6.12...v50.6.13 )
##### Bug Fixes
- **`lines-before-block`:** Only trigger after ';', '}', '|', and '&'
([#​1383](https://redirect.github.com/gajus/eslint-plugin-jsdoc/issues/1383 ))
([19fa3dc](19fa3dcb32
)),
closes
[#​1379](https://redirect.github.com/gajus/eslint-plugin-jsdoc/issues/1379 )
[#​1343](https://redirect.github.com/gajus/eslint-plugin-jsdoc/issues/1343 )
###
[`v50.6.12`](https://redirect.github.com/gajus/eslint-plugin-jsdoc/releases/tag/v50.6.12 )
[Compare
Source](https://redirect.github.com/gajus/eslint-plugin-jsdoc/compare/v50.6.11...v50.6.12 )
##### Bug Fixes
- **`no-undefined-types`:** workaround `parse-imports-exports` bug in
handling trailing whitespace; fixes
[#​1373](https://redirect.github.com/gajus/eslint-plugin-jsdoc/issues/1373 )
([#​1384](https://redirect.github.com/gajus/eslint-plugin-jsdoc/issues/1384 ))
([f32989c](f32989c259
))
###
[`v50.6.11`](https://redirect.github.com/gajus/eslint-plugin-jsdoc/releases/tag/v50.6.11 )
[Compare
Source](https://redirect.github.com/gajus/eslint-plugin-jsdoc/compare/v50.6.10...v50.6.11 )
##### Bug Fixes
- **`check-values`:** workaround `parse-imports-exports` bug in handling
trailing whitespace; fixes
[#​1373](https://redirect.github.com/gajus/eslint-plugin-jsdoc/issues/1373 )
([#​1374](https://redirect.github.com/gajus/eslint-plugin-jsdoc/issues/1374 ))
([65b0dc0](65b0dc0f58
))
###
[`v50.6.10`](https://redirect.github.com/gajus/eslint-plugin-jsdoc/releases/tag/v50.6.10 )
[Compare
Source](https://redirect.github.com/gajus/eslint-plugin-jsdoc/compare/v50.6.9...v50.6.10 )
##### Bug Fixes
- **`check-values`, `no-undefined-types`:** avoid need for worker; fixes
[#​1371](https://redirect.github.com/gajus/eslint-plugin-jsdoc/issues/1371 )
([#​1372](https://redirect.github.com/gajus/eslint-plugin-jsdoc/issues/1372 ))
([6d5c9fb](6d5c9fb650
))
###
[`v50.6.9`](https://redirect.github.com/gajus/eslint-plugin-jsdoc/releases/tag/v50.6.9 )
[Compare
Source](https://redirect.github.com/gajus/eslint-plugin-jsdoc/compare/v50.6.8...v50.6.9 )
##### Reverts
- Revert "refactor: replace `synckit` with `make-synchronized`
([#​1366](https://redirect.github.com/gajus/eslint-plugin-jsdoc/issues/1366 ))"
([#​1367](https://redirect.github.com/gajus/eslint-plugin-jsdoc/issues/1367 ))
([771eadf](771eadfa44
))
###
[`v50.6.8`](https://redirect.github.com/gajus/eslint-plugin-jsdoc/releases/tag/v50.6.8 )
[Compare
Source](https://redirect.github.com/gajus/eslint-plugin-jsdoc/compare/v50.6.7...v50.6.8 )
##### Bug Fixes
- add missing config type(s)
([#​1365](https://redirect.github.com/gajus/eslint-plugin-jsdoc/issues/1365 ))
([ed62262](ed622628fc
))
###
[`v50.6.7`](https://redirect.github.com/gajus/eslint-plugin-jsdoc/releases/tag/v50.6.7 )
[Compare
Source](https://redirect.github.com/gajus/eslint-plugin-jsdoc/compare/v50.6.6...v50.6.7 )
##### Bug Fixes
- **no-undefined-types:** allow any available identifier; fixes
[#​178](https://redirect.github.com/gajus/eslint-plugin-jsdoc/issues/178 ),[#​1342](https://redirect.github.com/gajus/eslint-plugin-jsdoc/issues/1342 )
([1c38930](1c38930dd1
))
###
[`v50.6.6`](https://redirect.github.com/gajus/eslint-plugin-jsdoc/releases/tag/v50.6.6 )
[Compare
Source](https://redirect.github.com/gajus/eslint-plugin-jsdoc/compare/v50.6.5...v50.6.6 )
##### Bug Fixes
- **`empty-tags`:** allow for JSDoc-block final asterisks; fixes
[#​670](https://redirect.github.com/gajus/eslint-plugin-jsdoc/issues/670 )
([23b4bfa](23b4bfa1a8
))
###
[`v50.6.5`](https://redirect.github.com/gajus/eslint-plugin-jsdoc/releases/tag/v50.6.5 )
[Compare
Source](https://redirect.github.com/gajus/eslint-plugin-jsdoc/compare/v50.6.4...v50.6.5 )
##### Bug Fixes
- **`text-escaping`:** always allow content in example tags; fixes
[#​1360](https://redirect.github.com/gajus/eslint-plugin-jsdoc/issues/1360 )
([6baad05](6baad05aab
))
###
[`v50.6.4`](https://redirect.github.com/gajus/eslint-plugin-jsdoc/releases/tag/v50.6.4 )
[Compare
Source](https://redirect.github.com/gajus/eslint-plugin-jsdoc/compare/v50.6.3...v50.6.4 )
##### Bug Fixes
- force release
([9edf4b1](9edf4b18f9
))
- force release
([b08733a](b08733a127
))
</details>
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Enabled.
♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/ ).
View the [repository job
log](https://developer.mend.io/github/open-feature/js-sdk ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MC4xMS4xOCIsInVwZGF0ZWRJblZlciI6IjQwLjExLjE4IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-05-15 16:11:58 +00:00
renovate[bot]
43b14b4869
chore(deps): update dependency @types/node to v22.15.17 ( #1190 )
...
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[@types/node](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node )
([source](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ))
| [`22.15.3` ->
`22.15.17`](https://renovatebot.com/diffs/npm/@types%2fnode/22.15.3/22.15.17 )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Enabled.
♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/ ).
View the [repository job
log](https://developer.mend.io/github/open-feature/js-sdk ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MC4xMS4xOCIsInVwZGF0ZWRJblZlciI6IjQwLjExLjE4IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-05-15 16:10:34 +00:00
renovate[bot]
cd8017d537
chore(deps): update dependency esbuild to v0.25.4 ( #1185 )
...
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [esbuild](https://redirect.github.com/evanw/esbuild ) | [`0.25.2` ->
`0.25.4`](https://renovatebot.com/diffs/npm/esbuild/0.25.2/0.25.4 ) |
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Release Notes
<details>
<summary>evanw/esbuild (esbuild)</summary>
###
[`v0.25.4`](https://redirect.github.com/evanw/esbuild/blob/HEAD/CHANGELOG.md#0254 )
[Compare
Source](https://redirect.github.com/evanw/esbuild/compare/v0.25.3...v0.25.4 )
- Add simple support for CORS to esbuild's development server
([#​4125](https://redirect.github.com/evanw/esbuild/issues/4125 ))
Starting with version 0.25.0, esbuild's development server is no longer
configured to serve cross-origin requests. This was a deliberate change
to prevent any website you visit from accessing your running esbuild
development server. However, this change prevented (by design) certain
use cases such as "debugging in production" by having your production
website load code from `localhost` where the esbuild development server
is running.
To enable this use case, esbuild is adding a feature to allow
[Cross-Origin Resource
Sharing](https://developer.mozilla.org/en-US/docs/Web/HTTP/Guides/CORS )
(a.k.a. CORS) for [simple
requests](https://developer.mozilla.org/en-US/docs/Web/HTTP/Guides/CORS#simple_requests ).
Specifically, passing your origin to the new `cors` option will now set
the `Access-Control-Allow-Origin` response header when the request has a
matching `Origin` header. Note that this currently only works for
requests that don't send a preflight `OPTIONS` request, as esbuild's
development server doesn't currently support `OPTIONS` requests.
Some examples:
- **CLI:**
esbuild --servedir=. --cors-origin=https://example.com
- **JS:**
```js
const ctx = await esbuild.context({})
await ctx.serve({
servedir: '.',
cors: {
origin: 'https://example.com ',
},
})
```
- **Go:**
```go
ctx, _ := api.Context(api.BuildOptions{})
ctx.Serve(api.ServeOptions{
Servedir: ".",
CORS: api.CORSOptions{
Origin: []string{"https://example.com "},
},
})
```
The special origin `*` can be used to allow any origin to access
esbuild's development server. Note that this means any website you visit
will be able to read everything served by esbuild.
- Pass through invalid URLs in source maps unmodified
([#​4169](https://redirect.github.com/evanw/esbuild/issues/4169 ))
This fixes a regression in version 0.25.0 where `sources` in source maps
that form invalid URLs were not being passed through to the output.
Version 0.25.0 changed the interpretation of `sources` from file paths
to URLs, which means that URL parsing can now fail. Previously URLs that
couldn't be parsed were replaced with the empty string. With this
release, invalid URLs in `sources` should now be passed through
unmodified.
- Handle exports named `__proto__` in ES modules
([#​4162](https://redirect.github.com/evanw/esbuild/issues/4162 ),
[#​4163](https://redirect.github.com/evanw/esbuild/pull/4163 ))
In JavaScript, the special property name `__proto__` sets the prototype
when used inside an object literal. Previously esbuild's ESM-to-CommonJS
conversion didn't special-case the property name of exports named
`__proto__` so the exported getter accidentally became the prototype of
the object literal. It's unclear what this affects, if anything, but
it's better practice to avoid this by using a computed property name in
this case.
This fix was contributed by
[@​magic-akari](https://redirect.github.com/magic-akari ).
###
[`v0.25.3`](https://redirect.github.com/evanw/esbuild/blob/HEAD/CHANGELOG.md#0253 )
[Compare
Source](https://redirect.github.com/evanw/esbuild/compare/v0.25.2...v0.25.3 )
- Fix lowered `async` arrow functions before `super()`
([#​4141](https://redirect.github.com/evanw/esbuild/issues/4141 ),
[#​4142](https://redirect.github.com/evanw/esbuild/pull/4142 ))
This change makes it possible to call an `async` arrow function in a
constructor before calling `super()` when targeting environments without
`async` support, as long as the function body doesn't reference `this`.
Here's an example (notice the change from `this` to `null`):
```js
// Original code
class Foo extends Object {
constructor() {
(async () => await foo())()
super()
}
}
// Old output (with --target=es2016)
class Foo extends Object {
constructor() {
(() => __async(this, null, function* () {
return yield foo();
}))();
super();
}
}
// New output (with --target=es2016)
class Foo extends Object {
constructor() {
(() => __async(null, null, function* () {
return yield foo();
}))();
super();
}
}
```
Some background: Arrow functions with the `async` keyword are
transformed into generator functions for older language targets such as
`--target=es2016`. Since arrow functions capture `this`, the generated
code forwards `this` into the body of the generator function. However,
JavaScript class syntax forbids using `this` in a constructor before
calling `super()`, and this forwarding was problematic since previously
happened even when the function body doesn't use `this`. Starting with
this release, esbuild will now only forward `this` if it's used within
the function body.
This fix was contributed by
[@​magic-akari](https://redirect.github.com/magic-akari ).
- Fix memory leak with `--watch=true`
([#​4131](https://redirect.github.com/evanw/esbuild/issues/4131 ),
[#​4132](https://redirect.github.com/evanw/esbuild/pull/4132 ))
This release fixes a memory leak with esbuild when `--watch=true` is
used instead of `--watch`. Previously using `--watch=true` caused
esbuild to continue to use more and more memory for every rebuild, but
`--watch=true` should now behave like `--watch` and not leak memory.
This bug happened because esbuild disables the garbage collector when
it's not run as a long-lived process for extra speed, but esbuild's
checks for which arguments cause esbuild to be a long-lived process
weren't updated for the new `--watch=true` style of boolean command-line
flags. This has been an issue since this boolean flag syntax was added
in version 0.14.24 in 2022. These checks are unfortunately separate from
the regular argument parser because of how esbuild's internals are
organized (the command-line interface is exposed as a separate [Go
API](https://pkg.go.dev/github.com/evanw/esbuild/pkg/cli ) so you can
build your own custom esbuild CLI).
This fix was contributed by
[@​mxschmitt](https://redirect.github.com/mxschmitt ).
- More concise output for repeated legal comments
([#​4139](https://redirect.github.com/evanw/esbuild/issues/4139 ))
Some libraries have many files and also use the same legal comment text
in all files. Previously esbuild would copy each legal comment to the
output file. Starting with this release, legal comments duplicated
across separate files will now be grouped in the output file by unique
comment content.
- Allow a custom host with the development server
([#​4110](https://redirect.github.com/evanw/esbuild/issues/4110 ))
With this release, you can now use a custom non-IP `host` with esbuild's
local development server (either with `--serve=` for the CLI or with the
`serve()` call for the API). This was previously possible, but was
intentionally broken in [version
0.25.0](https://redirect.github.com/evanw/esbuild/releases/v0.25.0 ) to
fix a security issue. This change adds the functionality back except
that it's now opt-in and only for a single domain name that you provide.
For example, if you add a mapping in your `/etc/hosts` file from
`local.example.com` to `127.0.0.1` and then use `esbuild
--serve=local.example.com:8000`, you will now be able to visit
http://local.example.com:8000/ in your browser and successfully connect
to esbuild's development server (doing that would previously have been
blocked by the browser). This should also work with HTTPS if it's
enabled (see esbuild's documentation for how to do that).
- Add a limit to CSS nesting expansion
([#​4114](https://redirect.github.com/evanw/esbuild/issues/4114 ))
With this release, esbuild will now fail with an error if there is too
much CSS nesting expansion. This can happen when nested CSS is converted
to CSS without nesting for older browsers as expanding CSS nesting is
inherently exponential due to the resulting combinatorial explosion. The
expansion limit is currently hard-coded and cannot be changed, but is
extremely unlikely to trigger for real code. It exists to prevent
esbuild from using too much time and/or memory. Here's an example:
```css
a,b{a,b{a,b{a,b{a,b{a,b{a,b{a,b{a,b{a,b{a,b{a,b{a,b{a,b{a,b{a,b{a,b{a,b{a,b{a,b{color:red}}}}}}}}}}}}}}}}}}}}
```
Previously, transforming this file with `--target=safari1` took 5
seconds and generated 40mb of CSS. Trying to do that will now generate
the following error instead:
✘ [ERROR] CSS nesting is causing too much expansion
example.css:1:60:
1 │
a,b{a,b{a,b{a,b{a,b{a,b{a,b{a,b{a,b{a,b{a,b{a,b{a,b{a,b{a,b{a,b{a,b{a,b{a,b{a,b{color:red}}}}}}}}}}}}}}}}}}}}
╵ ^
CSS nesting expansion was terminated because a rule was generated with
65536 selectors. This limit
exists to prevent esbuild from using too much time and/or memory. Please
change your CSS to use
fewer levels of nesting.
- Fix path resolution edge case
([#​4144](https://redirect.github.com/evanw/esbuild/issues/4144 ))
This fixes an edge case where esbuild's path resolution algorithm could
deviate from node's path resolution algorithm. It involves a confusing
situation where a directory shares the same file name as a file (but
without the file extension). See the linked issue for specific details.
This appears to be a case where esbuild is correctly following [node's
published resolution
algorithm](https://nodejs.org/api/modules.html#all-together ) but where
node itself is doing something different. Specifically the step
`LOAD_AS_FILE` appears to be skipped when the input ends with `..`. This
release changes esbuild's behavior for this edge case to match node's
behavior.
- Update Go from 1.23.7 to 1.23.8
([#​4133](https://redirect.github.com/evanw/esbuild/issues/4133 ),
[#​4134](https://redirect.github.com/evanw/esbuild/pull/4134 ))
This should have no effect on existing code as this version change does
not change Go's operating system support. It may remove certain reports
from vulnerability scanners that detect which version of the Go compiler
esbuild uses, such as for CVE-2025-22871.
As a reminder, esbuild's development server is intended for development,
not for production, so I do not consider most networking-related
vulnerabilities in Go to be vulnerabilities in esbuild. Please do not
use esbuild's development server in production.
</details>
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/ ).
View the [repository job
log](https://developer.mend.io/github/open-feature/js-sdk ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yNjQuMCIsInVwZGF0ZWRJblZlciI6IjQwLjExLjE4IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-05-15 12:11:42 -04:00
renovate[bot]
273af9e20b
chore(deps): update dependency @rollup/plugin-typescript to v12 ( #1059 )
...
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[@rollup/plugin-typescript](https://redirect.github.com/rollup/plugins/tree/master/packages/typescript/#readme )
([source](https://redirect.github.com/rollup/plugins/tree/HEAD/packages/typescript ))
| [`^11.1.6` ->
`^12.0.0`](https://renovatebot.com/diffs/npm/@rollup%2fplugin-typescript/11.1.6/12.1.2 )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Release Notes
<details>
<summary>rollup/plugins (@​rollup/plugin-typescript)</summary>
###
[`v12.1.2`](https://redirect.github.com/rollup/plugins/blob/HEAD/packages/typescript/CHANGELOG.md#v1212 )
*2024-12-15*
##### Bugfixes
- fix: path validation issue in validatePaths function
([#​1800](https://redirect.github.com/rollup/plugins/issues/1800 ))
###
[`v12.1.1`](https://redirect.github.com/rollup/plugins/blob/HEAD/packages/typescript/CHANGELOG.md#v1211 )
*2024-10-16*
##### Bugfixes
- fix: allow for files to be nested in folders within outDir
([#​1783](https://redirect.github.com/rollup/plugins/issues/1783 ))
###
[`v12.1.0`](https://redirect.github.com/rollup/plugins/blob/HEAD/packages/typescript/CHANGELOG.md#v1210 )
*2024-09-22*
##### Features
- feat: add transformers factory.
([#​1668](https://redirect.github.com/rollup/plugins/issues/1668 ))
###
[`v12.0.0`](https://redirect.github.com/rollup/plugins/blob/HEAD/packages/typescript/CHANGELOG.md#v1200 )
*2024-09-22*
##### Breaking Changes
- fix!: correctly resolve filenames of declaration files for
`output.file`
([#​1728](https://redirect.github.com/rollup/plugins/issues/1728 ))
</details>
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/ ).
View the [repository job
log](https://developer.mend.io/github/open-feature/js-sdk ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC4xMjAuMSIsInVwZGF0ZWRJblZlciI6IjQwLjExLjE4IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-05-15 12:10:18 -04:00
renovate[bot]
8f9b1ae34f
chore(deps): update dependency rollup to v4.40.2 ( #1131 )
...
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [rollup](https://rollupjs.org/ )
([source](https://redirect.github.com/rollup/rollup )) | [`4.24.2` ->
`4.40.2`](https://renovatebot.com/diffs/npm/rollup/4.24.2/4.40.2 ) |
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Release Notes
<details>
<summary>rollup/rollup (rollup)</summary>
###
[`v4.40.2`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4402 )
[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.40.1...v4.40.2 )
*2025-05-06*
##### Bug Fixes
- Create correct IIFE/AMD/UMD bundles when using a mutable default
export
([#​5934](https://redirect.github.com/rollup/rollup/issues/5934 ))
- Fix execution order when using top-level await for dynamic imports
with inlineDynamicImports
([#​5937](https://redirect.github.com/rollup/rollup/issues/5937 ))
- Throw when the output is watched in watch mode
([#​5939](https://redirect.github.com/rollup/rollup/issues/5939 ))
##### Pull Requests
- [#​5934](https://redirect.github.com/rollup/rollup/pull/5934 ):
fix(exports): avoid "exports is not defined" `ReferenceError`
([@​dasa](https://redirect.github.com/dasa ))
- [#​5937](https://redirect.github.com/rollup/rollup/pull/5937 ):
consider TLA imports have higher execution priority
([@​TrickyPi](https://redirect.github.com/TrickyPi ))
- [#​5939](https://redirect.github.com/rollup/rollup/pull/5939 ):
fix: watch mode input should not be an output subpath
([@​btea](https://redirect.github.com/btea ))
- [#​5940](https://redirect.github.com/rollup/rollup/pull/5940 ):
chore(deps): update dependency vite to v6.3.4 \[security]
([@​renovate](https://redirect.github.com/renovate )\[bot])
- [#​5941](https://redirect.github.com/rollup/rollup/pull/5941 ):
chore(deps): update dependency eslint-plugin-unicorn to v59
([@​renovate](https://redirect.github.com/renovate )\[bot])
- [#​5942](https://redirect.github.com/rollup/rollup/pull/5942 ):
fix(deps): lock file maintenance minor/patch updates
([@​renovate](https://redirect.github.com/renovate )\[bot])
- [#​5943](https://redirect.github.com/rollup/rollup/pull/5943 ):
fix(deps): lock file maintenance minor/patch updates
([@​renovate](https://redirect.github.com/renovate )\[bot])
###
[`v4.40.1`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4401 )
[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.40.0...v4.40.1 )
*2025-04-28*
##### Bug Fixes
- Limit hash size for asset file names to the supported 21
([#​5921](https://redirect.github.com/rollup/rollup/issues/5921 ))
- Do not inline user-defined entry chunks or chunks with explicit file
name
([#​5923](https://redirect.github.com/rollup/rollup/issues/5923 ))
- Avoid top-level-await cycles when non-entry chunks use top-level await
([#​5930](https://redirect.github.com/rollup/rollup/issues/5930 ))
- Expose package.json via exports
([#​5931](https://redirect.github.com/rollup/rollup/issues/5931 ))
##### Pull Requests
- [#​5921](https://redirect.github.com/rollup/rollup/pull/5921 ):
fix(assetFileNames): reduce max hash size to 21
([@​shulaoda](https://redirect.github.com/shulaoda ))
- [#​5923](https://redirect.github.com/rollup/rollup/pull/5923 ):
fix: generate the separate chunk for the entry module with explicated
chunk filename or name
([@​TrickyPi](https://redirect.github.com/TrickyPi ))
- [#​5926](https://redirect.github.com/rollup/rollup/pull/5926 ):
fix(deps): update rust crate swc_compiler_base to v18
([@​renovate](https://redirect.github.com/renovate )\[bot])
- [#​5927](https://redirect.github.com/rollup/rollup/pull/5927 ):
fix(deps): lock file maintenance minor/patch updates
([@​renovate](https://redirect.github.com/renovate )\[bot])
- [#​5928](https://redirect.github.com/rollup/rollup/pull/5928 ):
fix(deps): lock file maintenance minor/patch updates
([@​renovate](https://redirect.github.com/renovate )\[bot])
- [#​5930](https://redirect.github.com/rollup/rollup/pull/5930 ):
Avoid chunks TLA dynamic import circular when TLA dynamic import used in
non-entry modules
([@​TrickyPi](https://redirect.github.com/TrickyPi ))
- [#​5931](https://redirect.github.com/rollup/rollup/pull/5931 ):
chore: add new `./package.json` entry
([@​JounQin](https://redirect.github.com/JounQin ),
[@​lukastaegert](https://redirect.github.com/lukastaegert ))
- [#​5936](https://redirect.github.com/rollup/rollup/pull/5936 ):
fix(deps): lock file maintenance minor/patch updates
([@​renovate](https://redirect.github.com/renovate )\[bot])
###
[`v4.40.0`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4400 )
[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.39.0...v4.40.0 )
*2025-04-12*
##### Features
- Only show `eval` warnings on first render and only when the call is
not tree-shaken
([#​5892](https://redirect.github.com/rollup/rollup/issues/5892 ))
- Tree-shake non-included dynamic import members when the handler just
maps to one named export
([#​5898](https://redirect.github.com/rollup/rollup/issues/5898 ))
##### Bug Fixes
- Consider dynamic imports nested within top-level-awaited dynamic
import expressions to be awaited as well
([#​5900](https://redirect.github.com/rollup/rollup/issues/5900 ))
- Fix namespace rendering when tree-shaking is disabled
([#​5908](https://redirect.github.com/rollup/rollup/issues/5908 ))
- When using multiple transform hook filters, all of them need to be
satisfied together
([#​5909](https://redirect.github.com/rollup/rollup/issues/5909 ))
##### Pull Requests
- [#​5892](https://redirect.github.com/rollup/rollup/pull/5892 ):
Warn when eval or namespace calls are rendered, not when they are parsed
([@​SunsetFi](https://redirect.github.com/SunsetFi ),
[@​lukastaegert](https://redirect.github.com/lukastaegert ))
- [#​5898](https://redirect.github.com/rollup/rollup/pull/5898 ):
feat: treeshake dynamic import chained member expression
([@​privatenumber](https://redirect.github.com/privatenumber ),
[@​lukastaegert](https://redirect.github.com/lukastaegert ))
- [#​5900](https://redirect.github.com/rollup/rollup/pull/5900 ):
consider the dynamic import within a TLA call expression as a TLA import
([@​TrickyPi](https://redirect.github.com/TrickyPi ))
- [#​5904](https://redirect.github.com/rollup/rollup/pull/5904 ):
fix(deps): update swc monorepo (major)
([@​renovate](https://redirect.github.com/renovate )\[bot])
- [#​5905](https://redirect.github.com/rollup/rollup/pull/5905 ):
chore(deps): lock file maintenance minor/patch updates
([@​renovate](https://redirect.github.com/renovate )\[bot])
- [#​5908](https://redirect.github.com/rollup/rollup/pull/5908 ):
Fix `treeshake: false` breaking destructured namespace imports
([@​Skn0tt](https://redirect.github.com/Skn0tt ))
- [#​5909](https://redirect.github.com/rollup/rollup/pull/5909 ):
Correct the behavior when multiple transform filter options are
specified ([@​sapphi-red](https://redirect.github.com/sapphi-red ))
- [#​5915](https://redirect.github.com/rollup/rollup/pull/5915 ):
chore(deps): update dependency
[@​types/picomatch](https://redirect.github.com/types/picomatch )
to v4 ([@​renovate](https://redirect.github.com/renovate )\[bot])
- [#​5916](https://redirect.github.com/rollup/rollup/pull/5916 ):
fix(deps): update rust crate swc_compiler_base to v17
([@​renovate](https://redirect.github.com/renovate )\[bot])
- [#​5917](https://redirect.github.com/rollup/rollup/pull/5917 ):
chore(deps): lock file maintenance minor/patch updates
([@​renovate](https://redirect.github.com/renovate )\[bot],
[@​lukastaegert](https://redirect.github.com/lukastaegert ))
- [#​5918](https://redirect.github.com/rollup/rollup/pull/5918 ):
chore(deps): update dependency vite to v6.2.6 \[security]
([@​renovate](https://redirect.github.com/renovate )\[bot],
[@​lukastaegert](https://redirect.github.com/lukastaegert ))
###
[`v4.39.0`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4390 )
[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.38.0...v4.39.0 )
*2025-04-02*
##### Features
- Do not create separate facade chunks if a chunk would contain several
entry modules that allow export extension if there are no export name
conflicts
([#​5891](https://redirect.github.com/rollup/rollup/issues/5891 ))
##### Bug Fixes
- Mark the `id` property as optional in the filter for the `resolveId`
hook
([#​5896](https://redirect.github.com/rollup/rollup/issues/5896 ))
##### Pull Requests
- [#​5891](https://redirect.github.com/rollup/rollup/pull/5891 ):
chunk: merge allow-extension modules
([@​wmertens](https://redirect.github.com/wmertens ),
[@​lukastaegert](https://redirect.github.com/lukastaegert ))
- [#​5893](https://redirect.github.com/rollup/rollup/pull/5893 ):
chore(deps): update dependency vite to v6.2.4 \[security]
([@​renovate](https://redirect.github.com/renovate )\[bot])
- [#​5896](https://redirect.github.com/rollup/rollup/pull/5896 ):
fix: resolveId id filter is optional
([@​sapphi-red](https://redirect.github.com/sapphi-red ))
###
[`v4.38.0`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4380 )
[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.37.0...v4.38.0 )
*2025-03-29*
##### Features
- Support `.filter` option in `resolveId`, `load` and `transform` hooks
([#​5882](https://redirect.github.com/rollup/rollup/issues/5882 ))
##### Pull Requests
- [#​5882](https://redirect.github.com/rollup/rollup/pull/5882 ):
Add support for hook filters
([@​sapphi-red](https://redirect.github.com/sapphi-red ))
- [#​5894](https://redirect.github.com/rollup/rollup/pull/5894 ):
fix(deps): lock file maintenance minor/patch updates
([@​renovate](https://redirect.github.com/renovate )\[bot])
- [#​5895](https://redirect.github.com/rollup/rollup/pull/5895 ):
chore(deps): update dependency eslint-plugin-unicorn to v58
([@​renovate](https://redirect.github.com/renovate )\[bot])
###
[`v4.37.0`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4370 )
[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.36.0...v4.37.0 )
*2025-03-23*
##### Features
- Support Musl Linux on Riscv64 architectures
([#​5726](https://redirect.github.com/rollup/rollup/issues/5726 ))
- Handles class decorators placed before the `export` keyword
([#​5871](https://redirect.github.com/rollup/rollup/issues/5871 ))
##### Bug Fixes
- Log Rust panic messages to the console when using the WASM build
([#​5875](https://redirect.github.com/rollup/rollup/issues/5875 ))
##### Pull Requests
- [#​5726](https://redirect.github.com/rollup/rollup/pull/5726 ):
Add support for linux riscv64 musl
([@​fossdd](https://redirect.github.com/fossdd ),
[@​leso-kn](https://redirect.github.com/leso-kn ))
- [#​5871](https://redirect.github.com/rollup/rollup/pull/5871 ):
feat: support decorators before or after export
([@​TrickyPi](https://redirect.github.com/TrickyPi ))
- [#​5875](https://redirect.github.com/rollup/rollup/pull/5875 ):
capture Rust panic messages and output them to the console.
([@​luyahan](https://redirect.github.com/luyahan ),
[@​lukastaegert](https://redirect.github.com/lukastaegert ))
- [#​5883](https://redirect.github.com/rollup/rollup/pull/5883 ):
Pin digest of 3rd party actions
([@​re-taro](https://redirect.github.com/re-taro ))
- [#​5885](https://redirect.github.com/rollup/rollup/pull/5885 ):
fix(deps): lock file maintenance minor/patch updates
([@​renovate](https://redirect.github.com/renovate )\[bot])
###
[`v4.36.0`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4360 )
[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.35.0...v4.36.0 )
*2025-03-17*
##### Features
- Extend `renderDynamicImport` hook to provide information about static
dependencies of the imported module
([#​5870](https://redirect.github.com/rollup/rollup/issues/5870 ))
- Export several additional types used by Vite
([#​5879](https://redirect.github.com/rollup/rollup/issues/5879 ))
##### Bug Fixes
- Do not merge chunks if that would create a top-level await cycle
between chunks
([#​5843](https://redirect.github.com/rollup/rollup/issues/5843 ))
##### Pull Requests
- [#​5843](https://redirect.github.com/rollup/rollup/pull/5843 ):
avoiding top level await circular
([@​TrickyPi](https://redirect.github.com/TrickyPi ),
[@​lukastaegert](https://redirect.github.com/lukastaegert ))
- [#​5870](https://redirect.github.com/rollup/rollup/pull/5870 ):
draft for extended renderDynamicImport hook
([@​iczero](https://redirect.github.com/iczero ),
[@​lukastaegert](https://redirect.github.com/lukastaegert ))
- [#​5876](https://redirect.github.com/rollup/rollup/pull/5876 ):
Update axios overrides to 1.8.2
([@​vadym-khodak](https://redirect.github.com/vadym-khodak ))
- [#​5877](https://redirect.github.com/rollup/rollup/pull/5877 ):
chore(deps): update dependency eslint-plugin-vue to v10
([@​renovate](https://redirect.github.com/renovate )\[bot])
- [#​5878](https://redirect.github.com/rollup/rollup/pull/5878 ):
fix(deps): lock file maintenance minor/patch updates
([@​renovate](https://redirect.github.com/renovate )\[bot])
- [#​5879](https://redirect.github.com/rollup/rollup/pull/5879 ):
fix: export types ([@​sxzz](https://redirect.github.com/sxzz ))
###
[`v4.35.0`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4350 )
[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.34.9...v4.35.0 )
*2025-03-08*
##### Features
- Pass build errors to the closeBundle hook
([#​5867](https://redirect.github.com/rollup/rollup/issues/5867 ))
##### Pull Requests
- [#​5852](https://redirect.github.com/rollup/rollup/pull/5852 ):
chore(deps): update dependency eslint-plugin-unicorn to v57
([@​renovate](https://redirect.github.com/renovate )\[bot],
[@​lukastaegert](https://redirect.github.com/lukastaegert ))
- [#​5862](https://redirect.github.com/rollup/rollup/pull/5862 ):
fix(deps): update swc monorepo (major)
([@​renovate](https://redirect.github.com/renovate )\[bot],
[@​lukastaegert](https://redirect.github.com/lukastaegert ))
- [#​5867](https://redirect.github.com/rollup/rollup/pull/5867 ):
feat(5858): make closeBundle hook receive the last error
([@​GauBen](https://redirect.github.com/GauBen ))
- [#​5872](https://redirect.github.com/rollup/rollup/pull/5872 ):
chore(deps): update dependency builtin-modules to v5
([@​renovate](https://redirect.github.com/renovate )\[bot])
- [#​5873](https://redirect.github.com/rollup/rollup/pull/5873 ):
chore(deps): update uraimo/run-on-arch-action action to v3
([@​renovate](https://redirect.github.com/renovate )\[bot])
- [#​5874](https://redirect.github.com/rollup/rollup/pull/5874 ):
fix(deps): lock file maintenance minor/patch updates
([@​renovate](https://redirect.github.com/renovate )\[bot])
###
[`v4.34.9`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4349 )
[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.34.8...v4.34.9 )
*2025-03-01*
##### Bug Fixes
- Support JSX modes in WASM
([#​5866](https://redirect.github.com/rollup/rollup/issues/5866 ))
- Allow the CustomPluginOptions to be extended
([#​5850](https://redirect.github.com/rollup/rollup/issues/5850 ))
##### Pull Requests
- [#​5850](https://redirect.github.com/rollup/rollup/pull/5850 ):
Revert CustomPluginOptions to be an interface
([@​sapphi-red](https://redirect.github.com/sapphi-red ),
[@​lukastaegert](https://redirect.github.com/lukastaegert ))
- [#​5851](https://redirect.github.com/rollup/rollup/pull/5851 ):
Javascript to JavaScript
([@​dasa](https://redirect.github.com/dasa ),
[@​lukastaegert](https://redirect.github.com/lukastaegert ))
- [#​5853](https://redirect.github.com/rollup/rollup/pull/5853 ):
chore(deps): update dependency pinia to v3
([@​renovate](https://redirect.github.com/renovate )\[bot])
- [#​5854](https://redirect.github.com/rollup/rollup/pull/5854 ):
fix(deps): update swc monorepo (major)
([@​renovate](https://redirect.github.com/renovate )\[bot])
- [#​5855](https://redirect.github.com/rollup/rollup/pull/5855 ):
fix(deps): lock file maintenance minor/patch updates
([@​renovate](https://redirect.github.com/renovate )\[bot],
[@​lukastaegert](https://redirect.github.com/lukastaegert ))
- [#​5860](https://redirect.github.com/rollup/rollup/pull/5860 ):
chore(deps): update dependency
[@​shikijs/vitepress-twoslash](https://redirect.github.com/shikijs/vitepress-twoslash )
to v3 ([@​renovate](https://redirect.github.com/renovate )\[bot])
- [#​5861](https://redirect.github.com/rollup/rollup/pull/5861 ):
chore(deps): update dependency globals to v16
([@​renovate](https://redirect.github.com/renovate )\[bot])
- [#​5863](https://redirect.github.com/rollup/rollup/pull/5863 ):
fix(deps): lock file maintenance minor/patch updates
([@​renovate](https://redirect.github.com/renovate )\[bot])
- [#​5864](https://redirect.github.com/rollup/rollup/pull/5864 ):
chore(deps): lock file maintenance minor/patch updates
([@​renovate](https://redirect.github.com/renovate )\[bot])
- [#​5866](https://redirect.github.com/rollup/rollup/pull/5866 ):
Add jsx parameter to parseAsync in native.wasm.js
([@​TrickyPi](https://redirect.github.com/TrickyPi ))
###
[`v4.34.8`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4348 )
[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.34.7...v4.34.8 )
*2025-02-17*
##### Bug Fixes
- Do not make assumptions about the value of nested paths in logical
expressions if the expression cannot be simplified
([#​5846](https://redirect.github.com/rollup/rollup/issues/5846 ))
##### Pull Requests
- [#​5846](https://redirect.github.com/rollup/rollup/pull/5846 ):
return UnknownValue if the usedbranch is unkown and the path is not
empty ([@​TrickyPi](https://redirect.github.com/TrickyPi ))
###
[`v4.34.7`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4347 )
[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.34.6...v4.34.7 )
*2025-02-14*
##### Bug Fixes
- Ensure that calls to parameters are included correctly when using
try-catch deoptimization
([#​5842](https://redirect.github.com/rollup/rollup/issues/5842 ))
##### Pull Requests
- [#​5840](https://redirect.github.com/rollup/rollup/pull/5840 ):
fix(deps): lock file maintenance minor/patch updates
([@​renovate](https://redirect.github.com/renovate )\[bot])
- [#​5842](https://redirect.github.com/rollup/rollup/pull/5842 ):
Fix prop inclusion with try-catch-deoptimization
([@​lukastaegert](https://redirect.github.com/lukastaegert ))
###
[`v4.34.6`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4346 )
[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.34.5...v4.34.6 )
*2025-02-07*
##### Bug Fixes
- Retain "void 0" in the output for smaller output and fewer surprises
([#​5838](https://redirect.github.com/rollup/rollup/issues/5838 ))
##### Pull Requests
- [#​5835](https://redirect.github.com/rollup/rollup/pull/5835 ):
fix(deps): update swc monorepo (major)
([@​renovate](https://redirect.github.com/renovate )\[bot],
[@​lukastaegert](https://redirect.github.com/lukastaegert ))
- [#​5838](https://redirect.github.com/rollup/rollup/pull/5838 ):
replace undefined with void 0 for operator void
([@​TrickyPi](https://redirect.github.com/TrickyPi ))
###
[`v4.34.5`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4345 )
[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.34.4...v4.34.5 )
*2025-02-07*
##### Bug Fixes
- Ensure namespace reexports always include all properties of all
exports
([#​5837](https://redirect.github.com/rollup/rollup/issues/5837 ))
##### Pull Requests
- [#​5836](https://redirect.github.com/rollup/rollup/pull/5836 ):
fix(deps): lock file maintenance minor/patch updates
([@​renovate](https://redirect.github.com/renovate )\[bot])
- [#​5837](https://redirect.github.com/rollup/rollup/pull/5837 ):
Include all paths of reexports if namespace is used
([@​lukastaegert](https://redirect.github.com/lukastaegert ))
###
[`v4.34.4`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4344 )
[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.34.3...v4.34.4 )
*2025-02-05*
##### Bug Fixes
- Do not tree-shake properties if a rest element is used in
destructuring
([#​5833](https://redirect.github.com/rollup/rollup/issues/5833 ))
##### Pull Requests
- [#​5833](https://redirect.github.com/rollup/rollup/pull/5833 ):
include all properties if a rest element is destructed
([@​TrickyPi](https://redirect.github.com/TrickyPi ))
###
[`v4.34.3`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4343 )
[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.34.2...v4.34.3 )
*2025-02-05*
##### Bug Fixes
- Ensure properties of "this" are included in getters
([#​5831](https://redirect.github.com/rollup/rollup/issues/5831 ))
##### Pull Requests
- [#​5831](https://redirect.github.com/rollup/rollup/pull/5831 ):
include the properties that accessed by this
([@​TrickyPi](https://redirect.github.com/TrickyPi ))
###
[`v4.34.2`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4342 )
[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.34.1...v4.34.2 )
*2025-02-04*
##### Bug Fixes
- Fix an issue where not all usages of a function were properly detected
([#​5827](https://redirect.github.com/rollup/rollup/issues/5827 ))
##### Pull Requests
- [#​5827](https://redirect.github.com/rollup/rollup/pull/5827 ):
Ensure that functions provided to a constructor are properly deoptimized
([@​lukastaegert](https://redirect.github.com/lukastaegert ))
###
[`v4.34.1`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4341 )
[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.34.0...v4.34.1 )
*2025-02-03*
##### Bug Fixes
- Ensure throwing objects includes the entire object
([#​5825](https://redirect.github.com/rollup/rollup/issues/5825 ))
##### Pull Requests
- [#​5825](https://redirect.github.com/rollup/rollup/pull/5825 ):
Ensure that all properties of throw statements are included
([@​lukastaegert](https://redirect.github.com/lukastaegert ))
###
[`v4.34.0`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4340 )
[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.33.0...v4.34.0 )
*2025-02-01*
##### Features
- Tree-shake unused properties in object literals (re-implements
[#​5420](https://redirect.github.com/rollup/rollup/issues/5420 ))
([#​5737](https://redirect.github.com/rollup/rollup/issues/5737 ))
##### Pull Requests
- [#​5737](https://redirect.github.com/rollup/rollup/pull/5737 ):
Reapply object tree-shaking
([@​lukastaegert](https://redirect.github.com/lukastaegert ),
[@​TrickyPi](https://redirect.github.com/TrickyPi ))
###
[`v4.33.0`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4330 )
[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.32.1...v4.33.0 )
*2025-02-01*
##### Features
- Correctly detect literal value of more negated expressions
([#​5812](https://redirect.github.com/rollup/rollup/issues/5812 ))
##### Bug Fixes
- Use the correct with/assert attribute key in dynamic imports
([#​5818](https://redirect.github.com/rollup/rollup/issues/5818 ))
- Fix an issue where logical expressions were considered to have the
wrong value
([#​5819](https://redirect.github.com/rollup/rollup/issues/5819 ))
##### Pull Requests
- [#​5812](https://redirect.github.com/rollup/rollup/pull/5812 ):
feat: optimize the literal value of unary expressions
([@​TrickyPi](https://redirect.github.com/TrickyPi ))
- [#​5816](https://redirect.github.com/rollup/rollup/pull/5816 ):
fix(deps): update swc monorepo (major)
([@​renovate](https://redirect.github.com/renovate )\[bot],
[@​lukastaegert](https://redirect.github.com/lukastaegert ))
- [#​5817](https://redirect.github.com/rollup/rollup/pull/5817 ):
fix(deps): lock file maintenance minor/patch updates
([@​renovate](https://redirect.github.com/renovate )\[bot],
[@​lukastaegert](https://redirect.github.com/lukastaegert ))
- [#​5818](https://redirect.github.com/rollup/rollup/pull/5818 ):
support for changing the attributes key for dynamic imports
([@​TrickyPi](https://redirect.github.com/TrickyPi ))
- [#​5819](https://redirect.github.com/rollup/rollup/pull/5819 ):
Return UnknownValue if getLiteralValueAtPath is called recursively
within logical expressions
([@​TrickyPi](https://redirect.github.com/TrickyPi ))
- [#​5820](https://redirect.github.com/rollup/rollup/pull/5820 ):
return null
([@​kingma-sbw](https://redirect.github.com/kingma-sbw ))
###
[`v4.32.1`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4321 )
[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.32.0...v4.32.1 )
*2025-01-28*
##### Bug Fixes
- Fix possible crash when optimizing logical expressions
([#​5804](https://redirect.github.com/rollup/rollup/issues/5804 ))
##### Pull Requests
- [#​5804](https://redirect.github.com/rollup/rollup/pull/5804 ):
fix: set hasDeoptimizedCache to true as early as possible
([@​TrickyPi](https://redirect.github.com/TrickyPi ))
- [#​5813](https://redirect.github.com/rollup/rollup/pull/5813 ):
Fix typo ([@​kantuni](https://redirect.github.com/kantuni ))
###
[`v4.32.0`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4320 )
[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.31.0...v4.32.0 )
*2025-01-24*
##### Features
- Add watch.onInvalidate option to trigger actions immediately when a
file is changed
([#​5799](https://redirect.github.com/rollup/rollup/issues/5799 ))
##### Bug Fixes
- Fix incorrect urls in CLI warnings
([#​5809](https://redirect.github.com/rollup/rollup/issues/5809 ))
##### Pull Requests
- [#​5799](https://redirect.github.com/rollup/rollup/pull/5799 ):
Feature/watch on invalidate
([@​drebrez](https://redirect.github.com/drebrez ),
[@​lukastaegert](https://redirect.github.com/lukastaegert ))
- [#​5808](https://redirect.github.com/rollup/rollup/pull/5808 ):
chore(deps): update dependency vite to v6.0.9 \[security]
([@​renovate](https://redirect.github.com/renovate )\[bot])
- [#​5809](https://redirect.github.com/rollup/rollup/pull/5809 ):
fix: avoid duplicate rollupjs.org prefix
([@​GauBen](https://redirect.github.com/GauBen ),
[@​lukastaegert](https://redirect.github.com/lukastaegert ))
- [#​5810](https://redirect.github.com/rollup/rollup/pull/5810 ):
chore(deps): update dependency
[@​shikijs/vitepress-twoslash](https://redirect.github.com/shikijs/vitepress-twoslash )
to v2 ([@​renovate](https://redirect.github.com/renovate )\[bot])
- [#​5811](https://redirect.github.com/rollup/rollup/pull/5811 ):
fix(deps): lock file maintenance minor/patch updates
([@​renovate](https://redirect.github.com/renovate )\[bot])
###
[`v4.31.0`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4310 )
[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.30.1...v4.31.0 )
*2025-01-19*
##### Features
- Do not immediately quit when trying to use watch mode from within
non-TTY environments
([#​5803](https://redirect.github.com/rollup/rollup/issues/5803 ))
##### Bug Fixes
- Handle files with more than one UTF-8 BOM header
([#​5806](https://redirect.github.com/rollup/rollup/issues/5806 ))
##### Pull Requests
- [#​5792](https://redirect.github.com/rollup/rollup/pull/5792 ):
fix(deps): update rust crate swc_compiler_base to v8
([@​renovate](https://redirect.github.com/renovate )\[bot])
- [#​5793](https://redirect.github.com/rollup/rollup/pull/5793 ):
fix(deps): lock file maintenance minor/patch updates
([@​renovate](https://redirect.github.com/renovate )\[bot])
- [#​5794](https://redirect.github.com/rollup/rollup/pull/5794 ):
chore(deps): lock file maintenance
([@​renovate](https://redirect.github.com/renovate )\[bot])
- [#​5801](https://redirect.github.com/rollup/rollup/pull/5801 ):
chore(deps): update dependency eslint-config-prettier to v10
([@​renovate](https://redirect.github.com/renovate )\[bot])
- [#​5802](https://redirect.github.com/rollup/rollup/pull/5802 ):
fix(deps): lock file maintenance minor/patch updates
([@​renovate](https://redirect.github.com/renovate )\[bot])
- [#​5803](https://redirect.github.com/rollup/rollup/pull/5803 ):
Support watch mode in yarn, gradle and containers
([@​lukastaegert](https://redirect.github.com/lukastaegert ))
- [#​5806](https://redirect.github.com/rollup/rollup/pull/5806 ):
fix: strip all BOMs
([@​TrickyPi](https://redirect.github.com/TrickyPi ))
###
[`v4.30.1`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4301 )
[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.30.0...v4.30.1 )
*2025-01-07*
##### Bug Fixes
- Prevent invalid code when simplifying unary expressions in switch
cases
([#​5786](https://redirect.github.com/rollup/rollup/issues/5786 ))
##### Pull Requests
- [#​5786](https://redirect.github.com/rollup/rollup/pull/5786 ):
fix: consider that literals cannot following switch case.
([@​TrickyPi](https://redirect.github.com/TrickyPi ))
###
[`v4.30.0`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4300 )
[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.29.2...v4.30.0 )
*2025-01-06*
##### Features
- Inline values of resolvable unary expressions for improved
tree-shaking
([#​5775](https://redirect.github.com/rollup/rollup/issues/5775 ))
##### Pull Requests
- [#​5775](https://redirect.github.com/rollup/rollup/pull/5775 ):
feat: enhance the treehshaking for unary expression
([@​TrickyPi](https://redirect.github.com/TrickyPi ))
- [#​5783](https://redirect.github.com/rollup/rollup/pull/5783 ):
Improve CI caching for node_modules
([@​lukastaegert](https://redirect.github.com/lukastaegert ))
###
[`v4.29.2`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4292 )
[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.29.1...v4.29.2 )
*2025-01-05*
##### Bug Fixes
- Keep import attributes when using dynamic ESM `import()` expressions
from CommonJS
([#​5781](https://redirect.github.com/rollup/rollup/issues/5781 ))
##### Pull Requests
- [#​5772](https://redirect.github.com/rollup/rollup/pull/5772 ):
Improve caching on CI
([@​lukastaegert](https://redirect.github.com/lukastaegert ))
- [#​5773](https://redirect.github.com/rollup/rollup/pull/5773 ):
fix(deps): lock file maintenance minor/patch updates
([@​renovate](https://redirect.github.com/renovate )\[bot])
- [#​5780](https://redirect.github.com/rollup/rollup/pull/5780 ):
feat: use picocolors instead of colorette
([@​re-taro](https://redirect.github.com/re-taro ))
- [#​5781](https://redirect.github.com/rollup/rollup/pull/5781 ):
fix: keep import attributes for cjs format
([@​TrickyPi](https://redirect.github.com/TrickyPi ))
###
[`v4.29.1`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4291 )
[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.29.0...v4.29.1 )
*2024-12-21*
##### Bug Fixes
- Fix crash from deoptimized logical expressions
([#​5771](https://redirect.github.com/rollup/rollup/issues/5771 ))
##### Pull Requests
- [#​5769](https://redirect.github.com/rollup/rollup/pull/5769 ):
Remove unnecessary lifetimes
([@​lukastaegert](https://redirect.github.com/lukastaegert ))
- [#​5771](https://redirect.github.com/rollup/rollup/pull/5771 ):
fix: do not optimize the literal value if the cache is deoptimized
([@​TrickyPi](https://redirect.github.com/TrickyPi ))
###
[`v4.29.0`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4290 )
[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.28.1...v4.29.0 )
*2024-12-20*
##### Features
- Treat objects as truthy and always check second argument to better
simplify logical expressions
([#​5763](https://redirect.github.com/rollup/rollup/issues/5763 ))
##### Pull Requests
- [#​5759](https://redirect.github.com/rollup/rollup/pull/5759 ):
docs: add utf-8 encoding to JSON file reading
([@​chouchouji](https://redirect.github.com/chouchouji ))
- [#​5760](https://redirect.github.com/rollup/rollup/pull/5760 ):
fix(deps): lock file maintenance minor/patch updates
([@​renovate](https://redirect.github.com/renovate )\[bot])
- [#​5763](https://redirect.github.com/rollup/rollup/pull/5763 ):
fix: introduce UnknownFalsyValue for enhancing if statement tree-shaking
([@​TrickyPi](https://redirect.github.com/TrickyPi ))
- [#​5766](https://redirect.github.com/rollup/rollup/pull/5766 ):
chore(deps): update dependency
[@​rollup/plugin-node-resolve](https://redirect.github.com/rollup/plugin-node-resolve )
to v16 ([@​renovate](https://redirect.github.com/renovate )\[bot])
- [#​5767](https://redirect.github.com/rollup/rollup/pull/5767 ):
fix(deps): lock file maintenance minor/patch updates
([@​renovate](https://redirect.github.com/renovate )\[bot])
###
[`v4.28.1`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4281 )
[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.28.0...v4.28.1 )
*2024-12-06*
##### Bug Fixes
- Support running Rollup natively on LoongArch
([#​5749](https://redirect.github.com/rollup/rollup/issues/5749 ))
- Add optional `debugId` to `SourceMap` types
([#​5751](https://redirect.github.com/rollup/rollup/issues/5751 ))
##### Pull Requests
- [#​5749](https://redirect.github.com/rollup/rollup/pull/5749 ):
feat: add support for LoongArch
([@​darkyzhou](https://redirect.github.com/darkyzhou ))
- [#​5751](https://redirect.github.com/rollup/rollup/pull/5751 ):
feat: Add `debugId` to `SourceMap` types
([@​timfish](https://redirect.github.com/timfish ),
[@​lukastaegert](https://redirect.github.com/lukastaegert ))
- [#​5752](https://redirect.github.com/rollup/rollup/pull/5752 ):
chore(deps): update dependency mocha to v11
([@​renovate](https://redirect.github.com/renovate )\[bot])
- [#​5753](https://redirect.github.com/rollup/rollup/pull/5753 ):
chore(deps): update dependency vite to v6
([@​renovate](https://redirect.github.com/renovate )\[bot])
- [#​5754](https://redirect.github.com/rollup/rollup/pull/5754 ):
fix(deps): update swc monorepo (major)
([@​renovate](https://redirect.github.com/renovate )\[bot])
- [#​5755](https://redirect.github.com/rollup/rollup/pull/5755 ):
chore(deps): lock file maintenance minor/patch updates
([@​renovate](https://redirect.github.com/renovate )\[bot])
- [#​5756](https://redirect.github.com/rollup/rollup/pull/5756 ):
Test if saving the Cargo cache can speed up FreeBSD
([@​lukastaegert](https://redirect.github.com/lukastaegert ))
###
[`v4.28.0`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4280 )
[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.27.4...v4.28.0 )
*2024-11-30*
##### Features
- Allow to specify how to handle import attributes when transpiling
Rollup config files
([#​5743](https://redirect.github.com/rollup/rollup/issues/5743 ))
##### Pull Requests
- [#​5743](https://redirect.github.com/rollup/rollup/pull/5743 ):
fix: supports modify the import attributes key in the config file
([@​TrickyPi](https://redirect.github.com/TrickyPi ),
[@​lukastaegert](https://redirect.github.com/lukastaegert ))
- [#​5747](https://redirect.github.com/rollup/rollup/pull/5747 ):
chore(deps): update codecov/codecov-action action to v5
([@​renovate](https://redirect.github.com/renovate )\[bot])
- [#​5748](https://redirect.github.com/rollup/rollup/pull/5748 ):
chore(deps): lock file maintenance minor/patch updates
([@​renovate](https://redirect.github.com/renovate )\[bot])
###
[`v4.27.4`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4274 )
[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.27.3...v4.27.4 )
*2024-11-23*
##### Bug Fixes
- Update bundled magic-string to support sourcemap debug ids
([#​5740](https://redirect.github.com/rollup/rollup/issues/5740 ))
##### Pull Requests
- [#​5740](https://redirect.github.com/rollup/rollup/pull/5740 ):
chore(deps): lock file maintenance minor/patch updates
([@​renovate](https://redirect.github.com/renovate )\[bot])
###
[`v4.27.3`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4273 )
[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.27.2...v4.27.3 )
*2024-11-18*
##### Bug Fixes
- Revert object property tree-shaking for now
([#​5736](https://redirect.github.com/rollup/rollup/issues/5736 ))
##### Pull Requests
- [#​5736](https://redirect.github.com/rollup/rollup/pull/5736 ):
Revert object tree-shaking until some issues have been resolved
([@​lukastaegert](https://redirect.github.com/lukastaegert ))
###
[`v4.27.2`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4272 )
[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.27.1...v4.27.2 )
*2024-11-15*
##### Bug Fixes
- Ensure unused variables in patterns are always deconflicted if
rendered
([#​5728](https://redirect.github.com/rollup/rollup/issues/5728 ))
##### Pull Requests
- [#​5728](https://redirect.github.com/rollup/rollup/pull/5728 ):
Fix more variable deconflicting issues
([@​lukastaegert](https://redirect.github.com/lukastaegert ))
###
[`v4.27.1`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4271 )
[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.27.0...v4.27.1 )
*2024-11-15*
##### Bug Fixes
- Fix some situations where parameter declarations could put Rollup into
an infinite loop
([#​5727](https://redirect.github.com/rollup/rollup/issues/5727 ))
##### Pull Requests
- [#​5727](https://redirect.github.com/rollup/rollup/pull/5727 ):
Debug out-of-memory issues with Rollup v4.27.0
([@​lukastaegert](https://redirect.github.com/lukastaegert ))
###
[`v4.27.0`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4270 )
[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.26.0...v4.27.0 )
*2024-11-15*
##### Features
- Tree-shake unused properties in object literals
([#​5420](https://redirect.github.com/rollup/rollup/issues/5420 ))
##### Bug Fixes
- Change hash length limit to 21 to avoid inconsistent hash length
([#​5423](https://redirect.github.com/rollup/rollup/issues/5423 ))
##### Pull Requests
- [#​5420](https://redirect.github.com/rollup/rollup/pull/5420 ):
feat: implement object tree-shaking
([@​TrickyPi](https://redirect.github.com/TrickyPi ),
[@​lukastaegert](https://redirect.github.com/lukastaegert ))
- [#​5723](https://redirect.github.com/rollup/rollup/pull/5723 ):
Reduce max hash size to 21
([@​lukastaegert](https://redirect.github.com/lukastaegert ))
- [#​5724](https://redirect.github.com/rollup/rollup/pull/5724 ):
fix(deps): update swc monorepo (major)
([@​renovate](https://redirect.github.com/renovate )\[bot])
- [#​5725](https://redirect.github.com/rollup/rollup/pull/5725 ):
chore(deps): lock file maintenance minor/patch updates
([@​renovate](https://redirect.github.com/renovate )\[bot])
###
[`v4.26.0`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4260 )
[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.25.0...v4.26.0 )
*2024-11-13*
##### Features
- Allow to avoid `await bundle.close()` via explicit resource management
in TypeScript
([#​5721](https://redirect.github.com/rollup/rollup/issues/5721 ))
##### Pull Requests
- [#​5721](https://redirect.github.com/rollup/rollup/pull/5721 ):
feat: support `using` for `RollupBuild`
([@​shulaoda](https://redirect.github.com/shulaoda ))
###
[`v4.25.0`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4250 )
[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.24.4...v4.25.0 )
*2024-11-09*
##### Features
- Add `output.sourcemapDebugIds` option to add matching debug ids to
sourcemaps and code for tools like Sentry or Rollbar
([#​5712](https://redirect.github.com/rollup/rollup/issues/5712 ))
##### Bug Fixes
- Make it easier to manually reproduce base16 hashes by using a more
standard base16 conversion algorithm
([#​5719](https://redirect.github.com/rollup/rollup/issues/5719 ))
##### Pull Requests
- [#​5712](https://redirect.github.com/rollup/rollup/pull/5712 ):
feat: Add support for injecting Debug IDs
([@​timfish](https://redirect.github.com/timfish ))
- [#​5717](https://redirect.github.com/rollup/rollup/pull/5717 ):
fix(deps): update swc monorepo (major)
([@​renovate](https://redirect.github.com/renovate )\[bot])
- [#​5718](https://redirect.github.com/rollup/rollup/pull/5718 ):
chore(deps): lock file maintenance minor/patch updates
([@​renovate](https://redirect.github.com/renovate )\[bot])
- [#​5719](https://redirect.github.com/rollup/rollup/pull/5719 ):
Use a less surprising base-16 encoding
([@​lukastaegert](https://redirect.github.com/lukastaegert ))
###
[`v4.24.4`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4244 )
[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.24.3...v4.24.4 )
*2024-11-04*
##### Bug Fixes
- Ensure mutations by handlers in Proxy definitions are always respected
when tree-shaking
([#​5713](https://redirect.github.com/rollup/rollup/issues/5713 ))
##### Pull Requests
- [#​5708](https://redirect.github.com/rollup/rollup/pull/5708 ):
Update configuration-options document
([@​sacru2red](https://redirect.github.com/sacru2red ),
[@​lukastaegert](https://redirect.github.com/lukastaegert ))
- [#​5711](https://redirect.github.com/rollup/rollup/pull/5711 ):
chore(deps): lock file maintenance minor/patch updates
([@​renovate](https://redirect.github.com/renovate )\[bot])
- [#​5713](https://redirect.github.com/rollup/rollup/pull/5713 ):
fix: Deoptimize the proxied object if its property is reassigned in the
handler functions
([@​TrickyPi](https://redirect.github.com/TrickyPi ))
###
[`v4.24.3`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4243 )
[Compare
Source](https://redirect.github.com/rollup/rollup/compare/v4.24.2...v4.24.3 )
*2024-10-29*
##### Bug Fixes
- Slightly reduce memory consumption by specifying fixed array sizes
where possible
([#​5703](https://redirect.github.com/rollup/rollup/issues/5703 ))
##### Pull Requests
- [#​5703](https://redirect.github.com/rollup/rollup/pull/5703 ):
perf: use pre-allocated arrays for known result sizes
([@​GalacticHypernova](https://redirect.github.com/GalacticHypernova ))
</details>
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Enabled.
♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/ ).
View the [repository job
log](https://developer.mend.io/github/open-feature/js-sdk ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNDUuMCIsInVwZGF0ZWRJblZlciI6IjQwLjcuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-05-15 15:48:41 +00:00
renovate[bot]
cb14827639
chore(deps): update dependency @types/supertest to v6.0.3 ( #1169 )
...
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[@types/supertest](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/supertest )
([source](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/supertest ))
| [`6.0.2` ->
`6.0.3`](https://renovatebot.com/diffs/npm/@types%2fsupertest/6.0.2/6.0.3 )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Enabled.
♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/ ).
View the [repository job
log](https://developer.mend.io/github/open-feature/js-sdk ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-05-15 15:48:17 +00:00
renovate[bot]
c00675c9bd
chore(deps): update dependency @types/node to v22 ( #1067 )
...
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[@types/node](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node )
([source](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ))
| [`^20.11.16` ->
`^22.0.0`](https://renovatebot.com/diffs/npm/@types%2fnode/20.17.31/22.15.17 )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Enabled.
♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/ ).
View the [repository job
log](https://developer.mend.io/github/open-feature/js-sdk ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC4xMzMuMSIsInVwZGF0ZWRJblZlciI6IjQwLjcuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-05-15 15:48:00 +00:00
renovate[bot]
1e58d2b65e
chore(deps): update dependency @types/node to v20.17.31 ( #1138 )
...
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[@types/node](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node )
([source](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ))
| [`20.17.16` ->
`20.17.31`](https://renovatebot.com/diffs/npm/@types%2fnode/20.17.16/20.17.31 )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Enabled.
♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/ ).
View the [repository job
log](https://developer.mend.io/github/open-feature/js-sdk ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNDUuMCIsInVwZGF0ZWRJblZlciI6IjM5LjI1Ny4zIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-04-30 13:01:21 -04:00
Michael Beemer
59c2f5df76
chore: regenerate package lock ( #1184 )
...
Attempting to address the E2E failure:
https://github.com/open-feature/js-sdk/actions/runs/14643009193/job/41089818968?pr=1181
Signed-off-by: Michael Beemer <beeme1mr@users.noreply.github.com>
2025-04-24 12:25:37 -04:00
Kaushal Kapasi
59b8fe904f
feat: adds RequireFlagsEnabled decorator ( #1159 )
...
## This PR
- Feature: Adds a `RequireFlagsEnabled` decorator to allow a simple,
reusable way to block access to a specific controller or endpoint based
on the value of a list of one, or many, boolean flags
### Notes
- Discussions on the approach & implementation are welcome!
### Follow-up Tasks
- Update OpenFeature NestJS docs to include new `RequireFlagsEnabled`
decorator & usage examples
### How to test
`npx jest --selectProject=nest`
---------
Signed-off-by: Kaushal Kapasi <kaushal.kapasi@taplytics.com>
Signed-off-by: Todd Baert <todd.baert@dynatrace.com>
Co-authored-by: Todd Baert <todd.baert@dynatrace.com>
2025-04-24 13:32:55 +00:00
Michael Beemer
4fe8d87a2e
docs: Clarify the behavior of setProviderAndWait ( #1180 )
...
## This PR
- Updates readme examples to include a try/catch around
setProviderAndWait
- Improves the setProviderAndWait JS Doc
### Related Issues
Fixes #1179
### Notes
https://cloud-native.slack.com/archives/C0344AANLA1/p1745326882304199
---------
Signed-off-by: Michael Beemer <beeme1mr@users.noreply.github.com>
2025-04-23 13:16:18 -04:00
OpenFeature Bot
a259b9097b
chore(main): release angular-sdk 0.0.13 ( #1175 )
2025-04-20 19:07:29 +02:00
OpenFeature Bot
d13adca9cd
chore(main): release nestjs-sdk 0.2.4 ( #1177 )
2025-04-20 19:07:06 +02:00
Lukas Reining
42a3b39c24
chore(nest): allow nestjs version 11 ( #1176 )
2025-04-20 09:26:13 +02:00
Todd Baert
2f55a36dca
chore: use publish env
...
Signed-off-by: Todd Baert <todd.baert@dynatrace.com>
2025-04-16 12:27:46 -04:00
Lukas Reining
21a32ec92e
docs: fix readme typo ( #1174 )
...
Signed-off-by: Lukas Reining <lukas.reining@codecentric.de>
2025-04-14 16:41:22 -04:00
OpenFeature Bot
07a3d85742
chore(main): release react-sdk 1.0.0 ( #1154 )
...
🤖 I have created a release *beep* *boop*
---
##
[1.0.0](https://github.com/open-feature/js-sdk/compare/react-sdk-v0.4.11...react-sdk-v1.0.0 )
(2025-04-14)
### ✨ New Features
* add polyfill for react use hook
([#1157 ](https://github.com/open-feature/js-sdk/issues/1157 ))
([5afe61f
](5afe61f9e3
))
* add support for abort controllers to event handlers
([#1151 ](https://github.com/open-feature/js-sdk/issues/1151 ))
([6a22483
](6a224830fa
))
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
---------
Signed-off-by: OpenFeature Bot <109696520+openfeaturebot@users.noreply.github.com>
Signed-off-by: Todd Baert <todd.baert@dynatrace.com>
Co-authored-by: Todd Baert <todd.baert@dynatrace.com>
2025-04-14 17:03:15 +00:00
OpenFeature Bot
37bcf3cf48
chore(main): release web-sdk 1.5.0 ( #1156 )
...
🤖 I have created a release *beep* *boop*
---
##
[1.5.0](https://github.com/open-feature/js-sdk/compare/web-sdk-v1.4.1...web-sdk-v1.5.0 )
(2025-04-11)
### ✨ New Features
* add a top-level method for accessing providers
([#1152 ](https://github.com/open-feature/js-sdk/issues/1152 ))
([ae8fce8
](ae8fce8753
))
* add support for abort controllers to event handlers
([#1151 ](https://github.com/open-feature/js-sdk/issues/1151 ))
([6a22483
](6a224830fa
))
### 🐛 Bug Fixes
* Typo in name of the function
([2c5b37c
](2c5b37c79d
))
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
---------
Signed-off-by: OpenFeature Bot <109696520+openfeaturebot@users.noreply.github.com>
Signed-off-by: Todd Baert <todd.baert@dynatrace.com>
Co-authored-by: Lukas Reining <lukas.reining@codecentric.de>
Co-authored-by: Todd Baert <todd.baert@dynatrace.com>
2025-04-14 15:48:45 +00:00
OpenFeature Bot
aff60f6776
chore(main): release server-sdk 1.18.0 ( #1153 )
...
🤖 I have created a release *beep* *boop*
---
##
[1.18.0](https://github.com/open-feature/js-sdk/compare/server-sdk-v1.17.1...server-sdk-v1.18.0 )
(2025-04-11)
### ✨ New Features
* add a top-level method for accessing providers
([#1152 ](https://github.com/open-feature/js-sdk/issues/1152 ))
([ae8fce8
](ae8fce8753
))
* add support for abort controllers to event handlers
([#1151 ](https://github.com/open-feature/js-sdk/issues/1151 ))
([6a22483
](6a224830fa
))
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
Signed-off-by: OpenFeature Bot <109696520+openfeaturebot@users.noreply.github.com>
Co-authored-by: Lukas Reining <lukas.reining@codecentric.de>
2025-04-11 14:30:17 +02:00
OpenFeature Bot
7864bd704c
chore(main): release nestjs-sdk 0.2.3 ( #1144 )
...
🤖 I have created a release *beep* *boop*
---
##
[0.2.3](https://github.com/open-feature/js-sdk/compare/nestjs-sdk-v0.2.2...nestjs-sdk-v0.2.3 )
(2025-04-11)
### 🧹 Chore
* update sdk peer
([#1142 ](https://github.com/open-feature/js-sdk/issues/1142 ))
([8bb6206
](8bb620601e
))
### Dependencies
* The following workspace dependencies were updated
* devDependencies
* @openfeature/server-sdk bumped from * to 1.18.0
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
Signed-off-by: OpenFeature Bot <109696520+openfeaturebot@users.noreply.github.com>
2025-04-11 14:17:48 +02:00
OpenFeature Bot
191433e705
chore(main): release angular-sdk 0.0.12 ( #1171 )
...
🤖 I have created a release *beep* *boop*
---
##
[0.0.12](https://github.com/open-feature/js-sdk/compare/angular-sdk-v0.0.11...angular-sdk-v0.0.12 )
(2025-04-11)
### ✨ New Features
* **angular:** add docs for setting evaluation context in angular
([#1170 ](https://github.com/open-feature/js-sdk/issues/1170 ))
([24f1b23
](24f1b230bf
))
### Dependencies
* The following workspace dependencies were updated
* devDependencies
* @openfeature/web-sdk bumped from * to 1.5.0
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
---------
Signed-off-by: OpenFeature Bot <109696520+openfeaturebot@users.noreply.github.com>
Signed-off-by: Lukas Reining <lukas.reining@codecentric.de>
Co-authored-by: Lukas Reining <lukas.reining@codecentric.de>
2025-04-11 14:04:30 +02:00
Lukas Reining
24f1b230bf
feat(angular): add docs for setting evaluation context in angular ( #1170 )
...
<!-- Please use this template for your pull request. -->
<!-- Please use the sections that you need and delete other sections -->
Adds docs for setting evaluation context in angular
Signed-off-by: Lukas Reining <lukas.reining@codecentric.de>
2025-04-11 13:56:24 +02:00
renovate[bot]
5f85a56362
chore(deps): update dependency esbuild to ^0.25.0 [security] ( #1145 )
...
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [esbuild](https://redirect.github.com/evanw/esbuild ) | [`^0.24.0` ->
`^0.25.0`](https://renovatebot.com/diffs/npm/esbuild/0.24.2/0.25.0 ) |
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
### GitHub Vulnerability Alerts
####
[GHSA-67mh-4wv8-2f99](https://redirect.github.com/evanw/esbuild/security/advisories/GHSA-67mh-4wv8-2f99 )
### Summary
esbuild allows any websites to send any request to the development
server and read the response due to default CORS settings.
### Details
esbuild sets `Access-Control-Allow-Origin: *` header to all requests,
including the SSE connection, which allows any websites to send any
request to the development server and read the response.
df815ac27b/pkg/api/serve_other.go (L121)
df815ac27b/pkg/api/serve_other.go (L363)
**Attack scenario**:
1. The attacker serves a malicious web page
(`http://malicious.example.com `).
1. The user accesses the malicious web page.
1. The attacker sends a `fetch('http://127.0.0.1:8000/main.js ')` request
by JS in that malicious web page. This request is normally blocked by
same-origin policy, but that's not the case for the reasons above.
1. The attacker gets the content of `http://127.0.0.1:8000/main.js `.
In this scenario, I assumed that the attacker knows the URL of the
bundle output file name. But the attacker can also get that information
by
- Fetching `/index.html`: normally you have a script tag here
- Fetching `/assets`: it's common to have a `assets` directory when you
have JS files and CSS files in a different directory and the directory
listing feature tells the attacker the list of files
- Connecting `/esbuild` SSE endpoint: the SSE endpoint sends the URL
path of the changed files when the file is changed (`new
EventSource('/esbuild').addEventListener('change', e =>
console.log(e.type, e.data))`)
- Fetching URLs in the known file: once the attacker knows one file, the
attacker can know the URLs imported from that file
The scenario above fetches the compiled content, but if the victim has
the source map option enabled, the attacker can also get the
non-compiled content by fetching the source map file.
### PoC
1. Download
[reproduction.zip](https://redirect.github.com/user-attachments/files/18561484/reproduction.zip )
2. Extract it and move to that directory
1. Run `npm i`
1. Run `npm run watch`
1. Run `fetch('http://127.0.0.1:8000/app.js ').then(r =>
r.text()).then(content => console.log(content))` in a different
website's dev tools.

### Impact
Users using the serve feature may get the source code stolen by
malicious websites.
---
### Release Notes
<details>
<summary>evanw/esbuild (esbuild)</summary>
###
[`v0.25.0`](https://redirect.github.com/evanw/esbuild/blob/HEAD/CHANGELOG.md#v0250 )
[Compare
Source](https://redirect.github.com/evanw/esbuild/compare/v0.24.2...v0.25.0 )
**This release deliberately contains backwards-incompatible changes.**
To avoid automatically picking up releases like this, you should either
be pinning the exact version of `esbuild` in your `package.json` file
(recommended) or be using a version range syntax that only accepts patch
upgrades such as `^0.24.0` or `~0.24.0`. See npm's documentation about
[semver](https://docs.npmjs.com/cli/v6/using-npm/semver/ ) for more
information.
- Restrict access to esbuild's development server
([GHSA-67mh-4wv8-2f99](https://redirect.github.com/evanw/esbuild/security/advisories/GHSA-67mh-4wv8-2f99 ))
This change addresses esbuild's first security vulnerability report.
Previously esbuild set the `Access-Control-Allow-Origin` header to `*`
to allow esbuild's development server to be flexible in how it's used
for development. However, this allows the websites you visit to make
HTTP requests to esbuild's local development server, which gives
read-only access to your source code if the website were to fetch your
source code's specific URL. You can read more information in [the
report](https://redirect.github.com/evanw/esbuild/security/advisories/GHSA-67mh-4wv8-2f99 ).
Starting with this release,
[CORS](https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS ) will now
be disabled, and requests will now be denied if the host does not match
the one provided to `--serve=`. The default host is `0.0.0.0`, which
refers to all of the IP addresses that represent the local machine (e.g.
both `127.0.0.1` and `192.168.0.1`). If you want to customize anything
about esbuild's development server, you can [put a proxy in front of
esbuild](https://esbuild.github.io/api/#serve-proxy ) and modify the
incoming and/or outgoing requests.
In addition, the `serve()` API call has been changed to return an array
of `hosts` instead of a single `host` string. This makes it possible to
determine all of the hosts that esbuild's development server will
accept.
Thanks to [@​sapphi-red](https://redirect.github.com/sapphi-red )
for reporting this issue.
- Delete output files when a build fails in watch mode
([#​3643](https://redirect.github.com/evanw/esbuild/issues/3643 ))
It has been requested for esbuild to delete files when a build fails in
watch mode. Previously esbuild left the old files in place, which could
cause people to not immediately realize that the most recent build
failed. With this release, esbuild will now delete all output files if a
rebuild fails. Fixing the build error and triggering another rebuild
will restore all output files again.
- Fix correctness issues with the CSS nesting transform
([#​3620](https://redirect.github.com/evanw/esbuild/issues/3620 ),
[#​3877](https://redirect.github.com/evanw/esbuild/issues/3877 ),
[#​3933](https://redirect.github.com/evanw/esbuild/issues/3933 ),
[#​3997](https://redirect.github.com/evanw/esbuild/issues/3997 ),
[#​4005](https://redirect.github.com/evanw/esbuild/issues/4005 ),
[#​4037](https://redirect.github.com/evanw/esbuild/pull/4037 ),
[#​4038](https://redirect.github.com/evanw/esbuild/pull/4038 ))
This release fixes the following problems:
- Naive expansion of CSS nesting can result in an exponential blow-up of
generated CSS if each nesting level has multiple selectors. Previously
esbuild sometimes collapsed individual nesting levels using `:is()` to
limit expansion. However, this collapsing wasn't correct in some cases,
so it has been removed to fix correctness issues.
```css
/* Original code */
.parent {
> .a,
> .b1 > .b2 {
color: red;
}
}
/* Old output (with --supported:nesting=false) */
.parent > :is(.a, .b1 > .b2) {
color: red;
}
/* New output (with --supported:nesting=false) */
.parent > .a,
.parent > .b1 > .b2 {
color: red;
}
```
Thanks to [@​tim-we](https://redirect.github.com/tim-we ) for
working on a fix.
- The `&` CSS nesting selector can be repeated multiple times to
increase CSS specificity. Previously esbuild ignored this possibility
and incorrectly considered `&&` to have the same specificity as `&`.
With this release, this should now work correctly:
```css
/* Original code (color should be red) */
div {
&& { color: red }
& { color: blue }
}
/* Old output (with --supported:nesting=false) */
div {
color: red;
}
div {
color: blue;
}
/* New output (with --supported:nesting=false) */
div:is(div) {
color: red;
}
div {
color: blue;
}
```
Thanks to [@​CPunisher](https://redirect.github.com/CPunisher ) for
working on a fix.
- Previously transforming nested CSS incorrectly removed leading
combinators from within pseudoclass selectors such as `:where()`. This
edge case has been fixed and how has test coverage.
```css
/* Original code */
a b:has(> span) {
a & {
color: green;
}
}
/* Old output (with --supported:nesting=false) */
a :is(a b:has(span)) {
color: green;
}
/* New output (with --supported:nesting=false) */
a :is(a b:has(> span)) {
color: green;
}
```
This fix was contributed by
[@​NoremacNergfol](https://redirect.github.com/NoremacNergfol ).
- The CSS minifier contains logic to remove the `&` selector when it can
be implied, which happens when there is only one and it's the leading
token. However, this logic was incorrectly also applied to selector
lists inside of pseudo-class selectors such as `:where()`. With this
release, the minifier will now avoid applying this logic in this edge
case:
```css
/* Original code */
.a {
& .b { color: red }
:where(& .b) { color: blue }
}
/* Old output (with --minify) */
.a{.b{color:red}:where(.b){color:#​00f}}
/* New output (with --minify) */
.a{.b{color:red}:where(& .b){color:#​00f}}
```
- Fix some correctness issues with source maps
([#​1745](https://redirect.github.com/evanw/esbuild/issues/1745 ),
[#​3183](https://redirect.github.com/evanw/esbuild/issues/3183 ),
[#​3613](https://redirect.github.com/evanw/esbuild/issues/3613 ),
[#​3982](https://redirect.github.com/evanw/esbuild/issues/3982 ))
Previously esbuild incorrectly treated source map path references as
file paths instead of as URLs. With this release, esbuild will now treat
source map path references as URLs. This fixes the following problems
with source maps:
- File names in `sourceMappingURL` that contained a space previously did
not encode the space as `%20`, which resulted in JavaScript tools
(including esbuild) failing to read that path back in when consuming the
generated output file. This should now be fixed.
- Absolute URLs in `sourceMappingURL` that use the `file://` scheme
previously attempted to read from a folder called `file:`. These URLs
should now be recognized and parsed correctly.
- Entries in the `sources` array in the source map are now treated as
URLs instead of file paths. The correct behavior for this is much more
clear now that source maps has a [formal
specification](https://tc39.es/ecma426/ ). Many thanks to those who
worked on the specification.
- Fix incorrect package for `@esbuild/netbsd-arm64`
([#​4018](https://redirect.github.com/evanw/esbuild/issues/4018 ))
Due to a copy+paste typo, the binary published to
`@esbuild/netbsd-arm64` was not actually for `arm64`, and didn't run in
that environment. This release should fix running esbuild in that
environment (NetBSD on 64-bit ARM). Sorry about the mistake.
- Fix a minification bug with bitwise operators and bigints
([#​4065](https://redirect.github.com/evanw/esbuild/issues/4065 ))
This change removes an incorrect assumption in esbuild that all bitwise
operators result in a numeric integer. That assumption was correct up
until the introduction of bigints in ES2020, but is no longer correct
because almost all bitwise operators now operate on both numbers and
bigints. Here's an example of the incorrect minification:
```js
// Original code
if ((a & b) !== 0) found = true
// Old output (with --minify)
a&b&&(found=!0);
// New output (with --minify)
(a&b)!==0&&(found=!0);
```
- Fix esbuild incorrectly rejecting valid TypeScript edge case
([#​4027](https://redirect.github.com/evanw/esbuild/issues/4027 ))
The following TypeScript code is valid:
```ts
export function open(async?: boolean): void {
console.log(async as boolean)
}
```
Before this version, esbuild would fail to parse this with a syntax
error as it expected the token sequence `async as ...` to be the start
of an async arrow function expression `async as => ...`. This edge case
should be parsed correctly by esbuild starting with this release.
- Transform BigInt values into constructor calls when unsupported
([#​4049](https://redirect.github.com/evanw/esbuild/issues/4049 ))
Previously esbuild would refuse to compile the BigInt literals (such as
`123n`) if they are unsupported in the configured target environment
(such as with `--target=es6`). The rationale was that they cannot be
polyfilled effectively because they change the behavior of JavaScript's
arithmetic operators and JavaScript doesn't have operator overloading.
However, this prevents using esbuild with certain libraries that would
otherwise work if BigInt literals were ignored, such as with old
versions of the [`buffer`
library](https://redirect.github.com/feross/buffer ) before the library
fixed support for running in environments without BigInt support. So
with this release, esbuild will now turn BigInt literals into BigInt
constructor calls (so `123n` becomes `BigInt(123)`) and generate a
warning in this case. You can turn off the warning with
`--log-override:bigint=silent` or restore the warning to an error with
`--log-override:bigint=error` if needed.
- Change how `console` API dropping works
([#​4020](https://redirect.github.com/evanw/esbuild/issues/4020 ))
Previously the `--drop:console` feature replaced all method calls off of
the `console` global with `undefined` regardless of how long the
property access chain was (so it applied to `console.log()` and
`console.log.call(console)` and `console.log.not.a.method()`). However,
it was pointed out that this breaks uses of `console.log.bind(console)`.
That's also incompatible with Terser's implementation of the feature,
which is where this feature originally came from (it does support
`bind`). So with this release, using this feature with esbuild will now
only replace one level of method call (unless extended by `call` or
`apply`) and will replace the method being called with an empty function
in complex cases:
```js
// Original code
const x = console.log('x')
const y = console.log.call(console, 'y')
const z = console.log.bind(console)('z')
// Old output (with --drop-console)
const x = void 0;
const y = void 0;
const z = (void 0)("z");
// New output (with --drop-console)
const x = void 0;
const y = void 0;
const z = (() => {
}).bind(console)("z");
```
This should more closely match Terser's existing behavior.
- Allow BigInt literals as `define` values
With this release, you can now use BigInt literals as define values,
such as with `--define:FOO=123n`. Previously trying to do this resulted
in a syntax error.
- Fix a bug with resolve extensions in `node_modules`
([#​4053](https://redirect.github.com/evanw/esbuild/issues/4053 ))
The `--resolve-extensions=` option lets you specify the order in which
to try resolving implicit file extensions. For complicated reasons,
esbuild reorders TypeScript file extensions after JavaScript ones inside
of `node_modules` so that JavaScript source code is always preferred to
TypeScript source code inside of dependencies. However, this reordering
had a bug that could accidentally change the relative order of
TypeScript file extensions if one of them was a prefix of the other.
That bug has been fixed in this release. You can see the issue for
details.
- Better minification of statically-determined `switch` cases
([#​4028](https://redirect.github.com/evanw/esbuild/issues/4028 ))
With this release, esbuild will now try to trim unused code within
`switch` statements when the test expression and `case` expressions are
primitive literals. This can arise when the test expression is an
identifier that is substituted for a primitive literal at compile time.
For example:
```js
// Original code
switch (MODE) {
case 'dev':
installDevToolsConsole()
break
case 'prod':
return
default:
throw new Error
}
// Old output (with --minify '--define:MODE="prod"')
switch("prod"){case"dev":installDevToolsConsole();break;case"prod":return;default:throw
new Error}
// New output (with --minify '--define:MODE="prod"')
return;
```
- Emit `/* @​__KEY__ */` for string literals derived from property
names
([#​4034](https://redirect.github.com/evanw/esbuild/issues/4034 ))
Property name mangling is an advanced feature that shortens certain
property names for better minification (I say "advanced feature" because
it's very easy to break your code with it). Sometimes you need to store
a property name in a string, such as `obj.get('foo')` instead of
`obj.foo`. JavaScript minifiers such as esbuild and
[Terser](https://terser.org/ ) have a convention where a `/*
@​__KEY__ */` comment before the string makes it behave like a
property name. So `obj.get(/* @​__KEY__ */ 'foo')` allows the
contents of the string `'foo'` to be shortened.
However, esbuild sometimes itself generates string literals containing
property names when transforming code, such as when lowering class
fields to ES6 or when transforming TypeScript decorators. Previously
esbuild didn't generate its own `/* @​__KEY__ */` comments in this
case, which means that minifying your code by running esbuild again on
its own output wouldn't work correctly (this does not affect people that
both minify and transform their code in a single step).
With this release, esbuild will now generate `/* @​__KEY__ */`
comments for property names in generated string literals. To avoid lots
of unnecessary output for people that don't use this advanced feature,
the generated comments will only be present when the feature is active.
If you want to generate the comments but not actually mangle any
property names, you can use a flag that has no effect such as
`--reserve-props=.`, which tells esbuild to not mangle any property
names (but still activates this feature).
- The `text` loader now strips the UTF-8 BOM if present
([#​3935](https://redirect.github.com/evanw/esbuild/issues/3935 ))
Some software (such as Notepad on Windows) can create text files that
start with the three bytes `0xEF 0xBB 0xBF`, which is referred to as the
"byte order mark". This prefix is intended to be removed before using
the text. Previously esbuild's `text` loader included this byte sequence
in the string, which turns into a prefix of `\uFEFF` in a JavaScript
string when decoded from UTF-8. With this release, esbuild's `text`
loader will now remove these bytes when they occur at the start of the
file.
- Omit legal comment output files when empty
([#​3670](https://redirect.github.com/evanw/esbuild/issues/3670 ))
Previously configuring esbuild with `--legal-comment=external` or
`--legal-comment=linked` would always generate a `.LEGAL.txt` output
file even if it was empty. Starting with this release, esbuild will now
only do this if the file will be non-empty. This should result in a more
organized output directory in some cases.
- Update Go from 1.23.1 to 1.23.5
([#​4056](https://redirect.github.com/evanw/esbuild/issues/4056 ),
[#​4057](https://redirect.github.com/evanw/esbuild/pull/4057 ))
This should have no effect on existing code as this version change does
not change Go's operating system support. It may remove certain reports
from vulnerability scanners that detect which version of the Go compiler
esbuild uses.
This PR was contributed by
[@​MikeWillCook](https://redirect.github.com/MikeWillCook ).
- Allow passing a port of 0 to the development server
([#​3692](https://redirect.github.com/evanw/esbuild/issues/3692 ))
Unix sockets interpret a port of 0 to mean "pick a random unused port in
the [ephemeral port](https://en.wikipedia.org/wiki/Ephemeral_port )
range". However, esbuild's default behavior when the port is not
specified is to pick the first unused port starting from 8000 and
upward. This is more convenient because port 8000 is typically free, so
you can for example restart the development server and reload your app
in the browser without needing to change the port in the URL. Since
esbuild is written in Go (which does not have optional fields like
JavaScript), not specifying the port in Go means it defaults to 0, so
previously passing a port of 0 to esbuild caused port 8000 to be picked.
Starting with this release, passing a port of 0 to esbuild when using
the CLI or the JS API will now pass port 0 to the OS, which will pick a
random ephemeral port. To make this possible, the `Port` option in the
Go API has been changed from `uint16` to `int` (to allow for additional
sentinel values) and passing a port of -1 in Go now picks a random port.
Both the CLI and JS APIs now remap an explicitly-provided port of 0 into
-1 for the internal Go API.
Another option would have been to change `Port` in Go from `uint16` to
`*uint16` (Go's closest equivalent of `number | undefined`). However,
that would make the common case of providing an explicit port in Go very
awkward as Go doesn't support taking the address of integer constants.
This tradeoff isn't worth it as picking a random ephemeral port is a
rare use case. So the CLI and JS APIs should now match standard Unix
behavior when the port is 0, but you need to use -1 instead with Go API.
- Minification now avoids inlining constants with direct `eval`
([#​4055](https://redirect.github.com/evanw/esbuild/issues/4055 ))
Direct `eval` can be used to introduce a new variable like this:
```js
const variable = false
;(function () {
eval("var variable = true")
console.log(variable)
})()
```
Previously esbuild inlined `variable` here (which became `false`), which
changed the behavior of the code. This inlining is now avoided, but
please keep in mind that direct `eval` breaks many assumptions that
JavaScript tools hold about normal code (especially when bundling) and I
do not recommend using it. There are usually better alternatives that
have a more localized impact on your code. You can read more about this
here: https://esbuild.github.io/link/direct-eval/
</details>
---
### Configuration
📅 **Schedule**: Branch creation - "" (UTC), Automerge - At any time (no
schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.
♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/ ).
View the [repository job
log](https://developer.mend.io/github/open-feature/js-sdk ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNjQuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE2NC4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-04-11 10:21:28 +00:00
renovate[bot]
9218e987a0
chore(deps): update angular-eslint monorepo to v19 (major) ( #1140 )
...
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[@angular-eslint/builder](https://redirect.github.com/angular-eslint/angular-eslint )
([source](https://redirect.github.com/angular-eslint/angular-eslint/tree/HEAD/packages/builder ))
| [`18.4.3` ->
`19.3.0`](https://renovatebot.com/diffs/npm/@angular-eslint%2fbuilder/18.4.3/19.3.0 )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
|
[@angular-eslint/eslint-plugin](https://redirect.github.com/angular-eslint/angular-eslint )
([source](https://redirect.github.com/angular-eslint/angular-eslint/tree/HEAD/packages/eslint-plugin ))
| [`18.4.3` ->
`19.3.0`](https://renovatebot.com/diffs/npm/@angular-eslint%2feslint-plugin/18.4.3/19.3.0 )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
|
[@angular-eslint/eslint-plugin-template](https://redirect.github.com/angular-eslint/angular-eslint )
([source](https://redirect.github.com/angular-eslint/angular-eslint/tree/HEAD/packages/eslint-plugin-template ))
| [`18.4.3` ->
`19.3.0`](https://renovatebot.com/diffs/npm/@angular-eslint%2feslint-plugin-template/18.4.3/19.3.0 )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
|
[@angular-eslint/schematics](https://redirect.github.com/angular-eslint/angular-eslint )
([source](https://redirect.github.com/angular-eslint/angular-eslint/tree/HEAD/packages/schematics ))
| [`18.4.3` ->
`19.3.0`](https://renovatebot.com/diffs/npm/@angular-eslint%2fschematics/18.4.3/19.3.0 )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
|
[@angular-eslint/template-parser](https://redirect.github.com/angular-eslint/angular-eslint )
([source](https://redirect.github.com/angular-eslint/angular-eslint/tree/HEAD/packages/template-parser ))
| [`18.4.3` ->
`19.3.0`](https://renovatebot.com/diffs/npm/@angular-eslint%2ftemplate-parser/18.4.3/19.3.0 )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Release Notes
<details>
<summary>angular-eslint/angular-eslint
(@​angular-eslint/builder)</summary>
###
[`v19.3.0`](https://redirect.github.com/angular-eslint/angular-eslint/blob/HEAD/packages/builder/CHANGELOG.md#1930-2025-03-22 )
[Compare
Source](https://redirect.github.com/angular-eslint/angular-eslint/compare/v19.2.1...v19.3.0 )
This was a version bump only for builder to align it with other
projects, there were no code changes.
###
[`v19.2.1`](https://redirect.github.com/angular-eslint/angular-eslint/blob/HEAD/packages/builder/CHANGELOG.md#1921-2025-03-08 )
[Compare
Source](https://redirect.github.com/angular-eslint/angular-eslint/compare/v19.2.0...v19.2.1 )
This was a version bump only for builder to align it with other
projects, there were no code changes.
###
[`v19.2.0`](https://redirect.github.com/angular-eslint/angular-eslint/blob/HEAD/packages/builder/CHANGELOG.md#1920-2025-03-02 )
[Compare
Source](https://redirect.github.com/angular-eslint/angular-eslint/compare/v19.1.0...v19.2.0 )
##### 🩹 Fixes
- **eslint-plugin-template:** find inline templates on components in
blocks
([#​2238](https://redirect.github.com/angular-eslint/angular-eslint/pull/2238 ))
##### ❤️ Thank You
- Dave [@​reduckted](https://redirect.github.com/reduckted )
###
[`v19.1.0`](https://redirect.github.com/angular-eslint/angular-eslint/blob/HEAD/packages/builder/CHANGELOG.md#1910-2025-02-09 )
[Compare
Source](https://redirect.github.com/angular-eslint/angular-eslint/compare/v19.0.2...v19.1.0 )
This was a version bump only for builder to align it with other
projects, there were no code changes.
###
[`v19.0.2`](https://redirect.github.com/angular-eslint/angular-eslint/blob/HEAD/packages/builder/CHANGELOG.md#1902-2024-12-10 )
[Compare
Source](https://redirect.github.com/angular-eslint/angular-eslint/compare/v19.0.1...v19.0.2 )
This was a version bump only for builder to align it with other
projects, there were no code changes.
###
[`v19.0.1`](https://redirect.github.com/angular-eslint/angular-eslint/blob/HEAD/packages/builder/CHANGELOG.md#1901-2024-12-06 )
[Compare
Source](https://redirect.github.com/angular-eslint/angular-eslint/compare/v19.0.0...v19.0.1 )
This was a version bump only for builder to align it with other
projects, there were no code changes.
###
[`v19.0.0`](https://redirect.github.com/angular-eslint/angular-eslint/blob/HEAD/packages/builder/CHANGELOG.md#1900-2024-11-29 )
[Compare
Source](https://redirect.github.com/angular-eslint/angular-eslint/compare/v18.4.3...v19.0.0 )
##### 🚀 Features
- update angular packages to the stable v19
([#​2120](https://redirect.github.com/angular-eslint/angular-eslint/pull/2120 ))
##### ❤️ Thank You
- Leosvel Pérez Espinosa
[@​leosvelperez](https://redirect.github.com/leosvelperez )
#### 18.4.3 (2024-11-29)
##### 🩹 Fixes
- yarn pnp issues
([#​2143](https://redirect.github.com/angular-eslint/angular-eslint/pull/2143 ))
##### ❤️ Thank You
- James Henry
[@​JamesHenry](https://redirect.github.com/JamesHenry )
#### 18.4.2 (2024-11-23)
This was a version bump only for builder to align it with other
projects, there were no code changes.
#### 18.4.1 (2024-11-18)
This was a version bump only for builder to align it with other
projects, there were no code changes.
#### 18.4.0 (2024-10-21)
##### 🚀 Features
- support ESM configs and .cjs and .mjs extensions
([#​2068](https://redirect.github.com/angular-eslint/angular-eslint/pull/2068 ))
##### 🩹 Fixes
- update dependency eslint to v9.13.0, support noConfigLookup
([#​2045](https://redirect.github.com/angular-eslint/angular-eslint/pull/2045 ))
##### ❤️ Thank You
- James Henry
[@​JamesHenry](https://redirect.github.com/JamesHenry )
#### 18.3.1 (2024-09-11)
This was a version bump only for builder to align it with other
projects, there were no code changes.
#### 18.3.0 (2024-08-13)
##### 🩹 Fixes
- ensure consistent nx dependency versions
##### ❤️ Thank You
- James Henry
#### 18.2.0 (2024-07-31)
This was a version bump only for builder to align it with other
projects, there were no code changes.
#### 18.1.0 (2024-07-01)
This was a version bump only for builder to align it with other
projects, there were no code changes.
#### 18.0.1 (2024-05-30)
##### 🩹 Fixes
- move typescript-eslint packages to peerDeps, consistently allow v7 and
v8
##### ❤️ Thank You
- James Henry
</details>
<details>
<summary>angular-eslint/angular-eslint
(@​angular-eslint/eslint-plugin)</summary>
###
[`v19.3.0`](https://redirect.github.com/angular-eslint/angular-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#1930-2025-03-22 )
[Compare
Source](https://redirect.github.com/angular-eslint/angular-eslint/compare/v19.2.1...v19.3.0 )
This was a version bump only for eslint-plugin to align it with other
projects, there were no code changes.
###
[`v19.2.1`](https://redirect.github.com/angular-eslint/angular-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#1921-2025-03-08 )
[Compare
Source](https://redirect.github.com/angular-eslint/angular-eslint/compare/v19.2.0...v19.2.1 )
This was a version bump only for eslint-plugin to align it with other
projects, there were no code changes.
###
[`v19.2.0`](https://redirect.github.com/angular-eslint/angular-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#1920-2025-03-02 )
[Compare
Source](https://redirect.github.com/angular-eslint/angular-eslint/compare/v19.1.0...v19.2.0 )
##### 🚀 Features
- **eslint-plugin:** add rule require-lifecycle-on-prototype
([#​2259](https://redirect.github.com/angular-eslint/angular-eslint/pull/2259 ))
##### 🩹 Fixes
- **eslint-plugin-template:** find inline templates on components in
blocks
([#​2238](https://redirect.github.com/angular-eslint/angular-eslint/pull/2238 ))
##### ❤️ Thank You
- Dave [@​reduckted](https://redirect.github.com/reduckted )
###
[`v19.1.0`](https://redirect.github.com/angular-eslint/angular-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#1910-2025-02-09 )
[Compare
Source](https://redirect.github.com/angular-eslint/angular-eslint/compare/v19.0.2...v19.1.0 )
##### 🚀 Features
- **eslint-plugin:** prefer-signals now checks .asReadonly() calls
([#​2218](https://redirect.github.com/angular-eslint/angular-eslint/pull/2218 ))
- **eslint-plugin:** prefer-signals read-only suggestion is now a fix
([#​2175](https://redirect.github.com/angular-eslint/angular-eslint/pull/2175 ))
##### 🩹 Fixes
- **eslint-plugin:** \[no-input-prefix] false positive on input
initializer value
([#​2184](https://redirect.github.com/angular-eslint/angular-eslint/pull/2184 ))
- **eslint-plugin:** \[prefer-signals] support linkedSignal
([#​2213](https://redirect.github.com/angular-eslint/angular-eslint/pull/2213 ))
##### ❤️ Thank You
- Cédric Exbrayat
[@​cexbrayat](https://redirect.github.com/cexbrayat )
- Dave [@​reduckted](https://redirect.github.com/reduckted )
- Lucas Neto Moreira
###
[`v19.0.2`](https://redirect.github.com/angular-eslint/angular-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#1902-2024-12-10 )
[Compare
Source](https://redirect.github.com/angular-eslint/angular-eslint/compare/v19.0.1...v19.0.2 )
##### 🩹 Fixes
- **eslint-plugin:** \[prefer-standalone] error range should only
include property and value
([#​2172](https://redirect.github.com/angular-eslint/angular-eslint/pull/2172 ))
##### ❤️ Thank You
- James Henry
[@​JamesHenry](https://redirect.github.com/JamesHenry )
###
[`v19.0.1`](https://redirect.github.com/angular-eslint/angular-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#1901-2024-12-06 )
[Compare
Source](https://redirect.github.com/angular-eslint/angular-eslint/compare/v19.0.0...v19.0.1 )
##### 🩹 Fixes
- **eslint-plugin:** adding prefer-signals rule to exported config
([#​2150](https://redirect.github.com/angular-eslint/angular-eslint/pull/2150 ))
##### ❤️ Thank You
- Quentin Deroubaix
[@​quentinderoubaix](https://redirect.github.com/quentinderoubaix )
###
[`v19.0.0`](https://redirect.github.com/angular-eslint/angular-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#1900-2024-11-29 )
[Compare
Source](https://redirect.github.com/angular-eslint/angular-eslint/compare/v18.4.3...v19.0.0 )
##### 🚀 Features
- ⚠️ **eslint-plugin:** promote prefer-standalone to recommended
([8dfdc4f4](https://redirect.github.com/angular-eslint/angular-eslint/commit/8dfdc4f4 ))
- **eslint-plugin:** new rule prefer-signals
([#​1872](https://redirect.github.com/angular-eslint/angular-eslint/pull/1872 ))
- ⚠️ **eslint-plugin:** remove deprecated no-host-metadata-property rule
([#​2113](https://redirect.github.com/angular-eslint/angular-eslint/pull/2113 ))
- ⚠️ **eslint-plugin:** remove deprecated sort-ngmodule-metadata-arrays
rule
([#​2114](https://redirect.github.com/angular-eslint/angular-eslint/pull/2114 ))
- ⚠️ **eslint-plugin:** prefer-standalone recognizes that standalone is
the default
([#​2096](https://redirect.github.com/angular-eslint/angular-eslint/pull/2096 ))
- ⚠️ **eslint-plugin:** remove deprecated prefer-standalone-component
rule
([#​2112](https://redirect.github.com/angular-eslint/angular-eslint/pull/2112 ))
##### ⚠️ Breaking Changes
- ⚠️ **eslint-plugin:** promote prefer-standalone to recommended
([8dfdc4f4](https://redirect.github.com/angular-eslint/angular-eslint/commit/8dfdc4f4 ))
- ⚠️ **eslint-plugin:** remove deprecated no-host-metadata-property rule
([#​2113](https://redirect.github.com/angular-eslint/angular-eslint/pull/2113 ))
- ⚠️ **eslint-plugin:** remove deprecated sort-ngmodule-metadata-arrays
rule
([#​2114](https://redirect.github.com/angular-eslint/angular-eslint/pull/2114 ))
- ⚠️ **eslint-plugin:** prefer-standalone recognizes that standalone is
the default
([#​2096](https://redirect.github.com/angular-eslint/angular-eslint/pull/2096 ))
- ⚠️ **eslint-plugin:** remove deprecated prefer-standalone-component
rule
([#​2112](https://redirect.github.com/angular-eslint/angular-eslint/pull/2112 ))
##### ❤️ Thank You
- Daniel Kimmich
[@​json-derulo](https://redirect.github.com/json-derulo )
- Dave [@​reduckted](https://redirect.github.com/reduckted )
- James Henry
[@​JamesHenry](https://redirect.github.com/JamesHenry )
- JamesHenry
[@​JamesHenry](https://redirect.github.com/JamesHenry )
#### 18.4.3 (2024-11-29)
This was a version bump only for eslint-plugin to align it with other
projects, there were no code changes.
#### 18.4.2 (2024-11-23)
##### 🩹 Fixes
- **eslint-plugin:** fix placement of lifecycle interface for subclasses
([#​1965](https://redirect.github.com/angular-eslint/angular-eslint/pull/1965 ))
- **eslint-plugin:** handle `output()` and `input()` functions in
various rules
([#​2098](https://redirect.github.com/angular-eslint/angular-eslint/pull/2098 ))
##### ❤️ Thank You
- Aleksandr Martirosyan
- Dave [@​reduckted](https://redirect.github.com/reduckted )
#### 18.4.1 (2024-11-18)
This was a version bump only for eslint-plugin to align it with other
projects, there were no code changes.
#### 18.4.0 (2024-10-21)
This was a version bump only for eslint-plugin to align it with other
projects, there were no code changes.
#### 18.3.1 (2024-09-11)
This was a version bump only for eslint-plugin to align it with other
projects, there were no code changes.
#### 18.3.0 (2024-08-13)
##### 🚀 Features
- **eslint-plugin:** new rule runtime-localize
##### ❤️ Thank You
- m-akinc
#### 18.2.0 (2024-07-31)
##### 🚀 Features
- update typescript-eslint to v8 stable, eslint v9.8.0
##### 🩹 Fixes
- **eslint-plugin:** \[prefer-standalone] ignore empty Directive
decorators
##### ❤️ Thank You
- James Henry
- Paweł Maniecki
#### 18.1.0 (2024-07-01)
##### 🚀 Features
- **eslint-plugin:** \[prefer-output-readonly] support output() function
##### 🩹 Fixes
- update typescript-eslint packages to v8.0.0-alpha.37
##### ❤️ Thank You
- Christian Svensson
- Daniel Kimmich
- Dave
- Martijn van der Meij
- Maximilian Main
#### 18.0.1 (2024-05-30)
##### 🩹 Fixes
- move typescript-eslint packages to peerDeps, consistently allow v7 and
v8
##### ❤️ Thank You
- James Henry
</details>
<details>
<summary>angular-eslint/angular-eslint
(@​angular-eslint/eslint-plugin-template)</summary>
###
[`v19.3.0`](https://redirect.github.com/angular-eslint/angular-eslint/blob/HEAD/packages/eslint-plugin-template/CHANGELOG.md#1930-2025-03-22 )
[Compare
Source](https://redirect.github.com/angular-eslint/angular-eslint/compare/v19.2.1...v19.3.0 )
##### 🚀 Features
- use
[@​angular/compiler](https://redirect.github.com/angular/compiler )
19.2.3 and rename some AST nodes to match
([#​2320](https://redirect.github.com/angular-eslint/angular-eslint/pull/2320 ))
- **eslint-plugin-template:** add rule prefer-contextual-for-variables
([#​2311](https://redirect.github.com/angular-eslint/angular-eslint/pull/2311 ))
- **eslint-plugin-template:** \[button-has-type] add option to ignore
missing type
([#​2326](https://redirect.github.com/angular-eslint/angular-eslint/pull/2326 ))
##### 🩹 Fixes
- **eslint-plugin-template:** \[attributes-order] treat inputs without
square brackets as attributes
([#​2316](https://redirect.github.com/angular-eslint/angular-eslint/pull/2316 ))
- **eslint-plugin-template:** \[attributes-order] order i18n attributes
([#​2307](https://redirect.github.com/angular-eslint/angular-eslint/pull/2307 ))
- **eslint-plugin-template:** \[i18n] Avoid exception in i18n rule with
allowMarkupInContent=false
([#​2327](https://redirect.github.com/angular-eslint/angular-eslint/pull/2327 ))
##### ❤️ Thank You
- Dave [@​reduckted](https://redirect.github.com/reduckted )
- m-akinc [@​m-akinc](https://redirect.github.com/m-akinc )
###
[`v19.2.1`](https://redirect.github.com/angular-eslint/angular-eslint/blob/HEAD/packages/eslint-plugin-template/CHANGELOG.md#1921-2025-03-08 )
[Compare
Source](https://redirect.github.com/angular-eslint/angular-eslint/compare/v19.2.0...v19.2.1 )
##### 🩹 Fixes
- **eslint-plugin-template:** \[prefer-self-closing-tags] resolve wrong
reports when structural directive + no content + no self-closing
([#​2287](https://redirect.github.com/angular-eslint/angular-eslint/pull/2287 ))
##### ❤️ Thank You
- Guillaume DROUARD
###
[`v19.2.0`](https://redirect.github.com/angular-eslint/angular-eslint/blob/HEAD/packages/eslint-plugin-template/CHANGELOG.md#1920-2025-03-02 )
[Compare
Source](https://redirect.github.com/angular-eslint/angular-eslint/compare/v19.1.0...v19.2.0 )
##### 🩹 Fixes
- **prefer-static-string-properties:** exclude special attributes
([#​2273](https://redirect.github.com/angular-eslint/angular-eslint/pull/2273 ))
- **prefer-static-string-properties:** resolve bug with directives
([#​2271](https://redirect.github.com/angular-eslint/angular-eslint/pull/2271 ))
- **eslint-plugin-template:** find inline templates on components in
blocks
([#​2238](https://redirect.github.com/angular-eslint/angular-eslint/pull/2238 ))
- **eslint-plugin-template:** \[prefer-static-string-properties] do not
check structural directives
([#​2253](https://redirect.github.com/angular-eslint/angular-eslint/pull/2253 ))
- **eslint-plugin-template:** \[prefer-self-closing-tags] allow nested
ng-content
([#​2257](https://redirect.github.com/angular-eslint/angular-eslint/pull/2257 ))
- **eslint-plugin-template:** \[prefer-self-closing-tags] do not treat
comments as whitespace
([#​2256](https://redirect.github.com/angular-eslint/angular-eslint/pull/2256 ))
##### ❤️ Thank You
- Dave [@​reduckted](https://redirect.github.com/reduckted )
- Marie Briand
[@​mbriand-lucca](https://redirect.github.com/mbriand-lucca )
###
[`v19.1.0`](https://redirect.github.com/angular-eslint/angular-eslint/blob/HEAD/packages/eslint-plugin-template/CHANGELOG.md#1910-2025-02-09 )
[Compare
Source](https://redirect.github.com/angular-eslint/angular-eslint/compare/v19.0.2...v19.1.0 )
##### 🚀 Features
- **eslint-plugin-template:** add rule prefer-static-string-properties
([#​2228](https://redirect.github.com/angular-eslint/angular-eslint/pull/2228 ))
##### 🩹 Fixes
- **eslint-plugin-template:** \[attribute-order] check for ng-template
within svg
([#​2223](https://redirect.github.com/angular-eslint/angular-eslint/pull/2223 ))
- **eslint-plugin-template:** \[prefer-self-closing-tags] do not remove
HTML-encoded whitespace
([#​2229](https://redirect.github.com/angular-eslint/angular-eslint/pull/2229 ))
##### ❤️ Thank You
- Dave [@​reduckted](https://redirect.github.com/reduckted )
###
[`v19.0.2`](https://redirect.github.com/angular-eslint/angular-eslint/blob/HEAD/packages/eslint-plugin-template/CHANGELOG.md#1902-2024-12-10 )
[Compare
Source](https://redirect.github.com/angular-eslint/angular-eslint/compare/v19.0.1...v19.0.2 )
This was a version bump only for eslint-plugin-template to align it with
other projects, there were no code changes.
###
[`v19.0.1`](https://redirect.github.com/angular-eslint/angular-eslint/blob/HEAD/packages/eslint-plugin-template/CHANGELOG.md#1901-2024-12-06 )
[Compare
Source](https://redirect.github.com/angular-eslint/angular-eslint/compare/v19.0.0...v19.0.1 )
##### 🩹 Fixes
- **eslint-plugin-template:** prevent the slot tag from being
self-closing
([#​2088](https://redirect.github.com/angular-eslint/angular-eslint/pull/2088 ))
##### ❤️ Thank You
- Joan Llenas
[@​joanllenas](https://redirect.github.com/joanllenas )
###
[`v19.0.0`](https://redirect.github.com/angular-eslint/angular-eslint/blob/HEAD/packages/eslint-plugin-template/CHANGELOG.md#1900-2024-11-29 )
[Compare
Source](https://redirect.github.com/angular-eslint/angular-eslint/compare/v18.4.3...v19.0.0 )
This was a version bump only for eslint-plugin-template to align it with
other projects, there were no code changes.
#### 18.4.3 (2024-11-29)
This was a version bump only for eslint-plugin-template to align it with
other projects, there were no code changes.
#### 18.4.2 (2024-11-23)
This was a version bump only for eslint-plugin-template to align it with
other projects, there were no code changes.
#### 18.4.1 (2024-11-18)
This was a version bump only for eslint-plugin-template to align it with
other projects, there were no code changes.
#### 18.4.0 (2024-10-21)
##### 🩹 Fixes
- update typescript-eslint packages to v8.10.0
([#​2046](https://redirect.github.com/angular-eslint/angular-eslint/pull/2046 ))
- update dependency aria-query to v5.3.2
([#​2053](https://redirect.github.com/angular-eslint/angular-eslint/pull/2053 ))
- update dependency aria-query to v5.3.1
([#​2043](https://redirect.github.com/angular-eslint/angular-eslint/pull/2043 ))
#### 18.3.1 (2024-09-11)
##### 🩹 Fixes
- **template-parser:** visit receiver of Call expression
- **template-parser:** visit receiver of Call expression"
- **template-parser:** visit receiver of Call expression
##### ❤️ Thank You
- James Henry
- Paweł Maniecki
#### 18.3.0 (2024-08-13)
##### 🩹 Fixes
- **eslint-plugin-template:** \[interactive-supports-focus] allowList
with form as default option to support event bubbling
- **eslint-plugin-template:** \[prefer-self-closing-tags] fix ng-content
with rich default content
- **prefer-self-closing-tags:** handle both forward and backward slash
##### ❤️ Thank You
- Daniel Kimmich
- Sandi Barr
- Simon
#### 18.2.0 (2024-07-31)
##### 🚀 Features
- update typescript-eslint to v8 stable, eslint v9.8.0
##### 🩹 Fixes
- update dependency axobject-query to v4.1.0
- **eslint-plugin-template:** add meta to preprocessor to resolve eslint
cache error
##### ❤️ Thank You
- James Henry
- kwiateusz
#### 18.1.0 (2024-07-01)
##### 🚀 Features
- **eslint-plugin:** \[no-call-expression] add allowPrefix and
allowSuffix
##### 🩹 Fixes
- update typescript-eslint packages to v8.0.0-alpha.37
- **eslint-plugin-template:** \[prefer-self-closing-tags] always ignore
index.html files
- **eslint-plugin-template:** \[prefer-self-closing-tags] support
ng-content with fallback content
##### ❤️ Thank You
- Christian Svensson
- Daniel Kimmich
- Dave
- Martijn van der Meij
- Maximilian Main
#### 18.0.1 (2024-05-30)
##### 🩹 Fixes
- move typescript-eslint packages to peerDeps, consistently allow v7 and
v8
##### ❤️ Thank You
- James Henry
</details>
<details>
<summary>angular-eslint/angular-eslint
(@​angular-eslint/schematics)</summary>
###
[`v19.3.0`](https://redirect.github.com/angular-eslint/angular-eslint/blob/HEAD/packages/schematics/CHANGELOG.md#1930-2025-03-22 )
[Compare
Source](https://redirect.github.com/angular-eslint/angular-eslint/compare/v19.2.1...v19.3.0 )
##### 🩹 Fixes
- update dependency eslint to v9.23.0
([#​2331](https://redirect.github.com/angular-eslint/angular-eslint/pull/2331 ))
- update typescript-eslint packages to v8.27.0
([#​2328](https://redirect.github.com/angular-eslint/angular-eslint/pull/2328 ))
- update typescript-eslint packages to v8.26.1
([#​2313](https://redirect.github.com/angular-eslint/angular-eslint/pull/2313 ))
###
[`v19.2.1`](https://redirect.github.com/angular-eslint/angular-eslint/blob/HEAD/packages/schematics/CHANGELOG.md#1921-2025-03-08 )
[Compare
Source](https://redirect.github.com/angular-eslint/angular-eslint/compare/v19.2.0...v19.2.1 )
##### 🩹 Fixes
- update dependency eslint to v9.22.0
([#​2294](https://redirect.github.com/angular-eslint/angular-eslint/pull/2294 ))
- update typescript-eslint packages to v8.26.0
([#​2282](https://redirect.github.com/angular-eslint/angular-eslint/pull/2282 ))
###
[`v19.2.0`](https://redirect.github.com/angular-eslint/angular-eslint/blob/HEAD/packages/schematics/CHANGELOG.md#1920-2025-03-02 )
[Compare
Source](https://redirect.github.com/angular-eslint/angular-eslint/compare/v19.1.0...v19.2.0 )
##### 🩹 Fixes
- update typescript-eslint packages to v8.25.0
([#​2263](https://redirect.github.com/angular-eslint/angular-eslint/pull/2263 ))
- update dependency eslint to v9.21.0
([#​2243](https://redirect.github.com/angular-eslint/angular-eslint/pull/2243 ))
- **eslint-plugin-template:** find inline templates on components in
blocks
([#​2238](https://redirect.github.com/angular-eslint/angular-eslint/pull/2238 ))
- update typescript-eslint packages to v8.24.0
([#​2240](https://redirect.github.com/angular-eslint/angular-eslint/pull/2240 ))
##### ❤️ Thank You
- Dave [@​reduckted](https://redirect.github.com/reduckted )
###
[`v19.1.0`](https://redirect.github.com/angular-eslint/angular-eslint/blob/HEAD/packages/schematics/CHANGELOG.md#1910-2025-02-09 )
[Compare
Source](https://redirect.github.com/angular-eslint/angular-eslint/compare/v19.0.2...v19.1.0 )
##### 🩹 Fixes
- update dependency eslint to v9.20.0
([#​2217](https://redirect.github.com/angular-eslint/angular-eslint/pull/2217 ))
- update typescript-eslint packages to v8.23.0
([#​2212](https://redirect.github.com/angular-eslint/angular-eslint/pull/2212 ))
- update dependency semver to v7.7.1
([#​2225](https://redirect.github.com/angular-eslint/angular-eslint/pull/2225 ))
- update typescript-eslint packages to v8.20.0
([#​2185](https://redirect.github.com/angular-eslint/angular-eslint/pull/2185 ))
- update dependency eslint to v9.18.0
([#​2181](https://redirect.github.com/angular-eslint/angular-eslint/pull/2181 ))
- update dependency ignore to v7
([#​2200](https://redirect.github.com/angular-eslint/angular-eslint/pull/2200 ))
###
[`v19.0.2`](https://redirect.github.com/angular-eslint/angular-eslint/blob/HEAD/packages/schematics/CHANGELOG.md#1902-2024-12-10 )
[Compare
Source](https://redirect.github.com/angular-eslint/angular-eslint/compare/v19.0.1...v19.0.2 )
##### 🩹 Fixes
- update typescript-eslint packages to v8.18.0
([#​2171](https://redirect.github.com/angular-eslint/angular-eslint/pull/2171 ))
###
[`v19.0.1`](https://redirect.github.com/angular-eslint/angular-eslint/blob/HEAD/packages/schematics/CHANGELOG.md#1901-2024-12-06 )
[Compare
Source](https://redirect.github.com/angular-eslint/angular-eslint/compare/v19.0.0...v19.0.1 )
##### 🩹 Fixes
- update typescript-eslint packages to v8.17.0
([#​2153](https://redirect.github.com/angular-eslint/angular-eslint/pull/2153 ))
- update dependency eslint to v9.16.0
([#​2148](https://redirect.github.com/angular-eslint/angular-eslint/pull/2148 ))
###
[`v19.0.0`](https://redirect.github.com/angular-eslint/angular-eslint/blob/HEAD/packages/schematics/CHANGELOG.md#1900-2024-11-29 )
[Compare
Source](https://redirect.github.com/angular-eslint/angular-eslint/compare/v18.4.3...v19.0.0 )
##### 🚀 Features
- allow referencing angular-eslint as the schematics collection
([2be3107b](https://redirect.github.com/angular-eslint/angular-eslint/commit/2be3107b ))
- update angular packages to the stable v19
([#​2120](https://redirect.github.com/angular-eslint/angular-eslint/pull/2120 ))
##### ❤️ Thank You
- JamesHenry
[@​JamesHenry](https://redirect.github.com/JamesHenry )
- Leosvel Pérez Espinosa
[@​leosvelperez](https://redirect.github.com/leosvelperez )
#### 18.4.3 (2024-11-29)
##### 🩹 Fixes
- update typescript-eslint packages to v8.16.0
([#​2135](https://redirect.github.com/angular-eslint/angular-eslint/pull/2135 ))
- yarn pnp issues
([#​2143](https://redirect.github.com/angular-eslint/angular-eslint/pull/2143 ))
##### ❤️ Thank You
- James Henry
[@​JamesHenry](https://redirect.github.com/JamesHenry )
#### 18.4.2 (2024-11-23)
This was a version bump only for schematics to align it with other
projects, there were no code changes.
#### 18.4.1 (2024-11-18)
##### 🩹 Fixes
- update dependency ignore to v6
([#​2047](https://redirect.github.com/angular-eslint/angular-eslint/pull/2047 ))
#### 18.4.0 (2024-10-21)
##### 🚀 Features
- support ESM configs and .cjs and .mjs extensions
([#​2068](https://redirect.github.com/angular-eslint/angular-eslint/pull/2068 ))
##### 🩹 Fixes
- update dependency eslint to v9.13.0, support noConfigLookup
([#​2045](https://redirect.github.com/angular-eslint/angular-eslint/pull/2045 ))
- update typescript-eslint packages to v8.10.0
([#​2046](https://redirect.github.com/angular-eslint/angular-eslint/pull/2046 ))
- update typescript-eslint packages to v8.5.0
([#​2020](https://redirect.github.com/angular-eslint/angular-eslint/pull/2020 ))
##### ❤️ Thank You
- James Henry
[@​JamesHenry](https://redirect.github.com/JamesHenry )
#### 18.3.1 (2024-09-11)
##### 🩹 Fixes
- update dependency eslint to v9.9.1
- update typescript-eslint packages to v8.2.0
#### 18.3.0 (2024-08-13)
##### 🩹 Fixes
- ensure consistent nx dependency versions
- update dependency eslint to v9.9.0
- update dependency ignore to v5.3.2
- update typescript-eslint packages to v8.0.1
- update typescript-eslint packages to v8.1.0
##### ❤️ Thank You
- James Henry
#### 18.2.0 (2024-07-31)
##### 🚀 Features
- update typescript-eslint to v8 stable, eslint v9.8.0
##### 🩹 Fixes
- update dependency semver to v7.6.3
##### ❤️ Thank You
- James Henry
#### 18.1.0 (2024-07-01)
##### 🩹 Fixes
- update dependency eslint to v9.4.0
- update dependency eslint to v9.5.0
- update dependency eslint to v9.6.0
- update typescript-eslint packages to v8.0.0-alpha.37
- update typescript-eslint packages to v8.0.0-alpha.38
##### ❤️ Thank You
- Christian Svensson
- Daniel Kimmich
- Dave
- Martijn van der Meij
- Maximilian Main
#### 18.0.1 (2024-05-30)
This was a version bump only for schematics to align it with other
projects, there were no code changes.
</details>
<details>
<summary>angular-eslint/angular-eslint
(@​angular-eslint/template-parser)</summary>
###
[`v19.3.0`](https://redirect.github.com/angular-eslint/angular-eslint/blob/HEAD/packages/template-parser/CHANGELOG.md#1930-2025-03-22 )
[Compare
Source](https://redirect.github.com/angular-eslint/angular-eslint/compare/v19.2.1...v19.3.0 )
##### 🚀 Features
- use
[@​angular/compiler](https://redirect.github.com/angular/compiler )
19.2.3 and rename some AST nodes to match
([#​2320](https://redirect.github.com/angular-eslint/angular-eslint/pull/2320 ))
- **template-parser:** visit
[@​let](https://redirect.github.com/let ) child nodes
([#​2312](https://redirect.github.com/angular-eslint/angular-eslint/pull/2312 ))
##### ❤️ Thank You
- Dave [@​reduckted](https://redirect.github.com/reduckted )
###
[`v19.2.1`](https://redirect.github.com/angular-eslint/angular-eslint/blob/HEAD/packages/template-parser/CHANGELOG.md#1921-2025-03-08 )
[Compare
Source](https://redirect.github.com/angular-eslint/angular-eslint/compare/v19.2.0...v19.2.1 )
This was a version bump only for template-parser to align it with other
projects, there were no code changes.
###
[`v19.2.0`](https://redirect.github.com/angular-eslint/angular-eslint/blob/HEAD/packages/template-parser/CHANGELOG.md#1920-2025-03-02 )
[Compare
Source](https://redirect.github.com/angular-eslint/angular-eslint/compare/v19.1.0...v19.2.0 )
##### 🩹 Fixes
- **eslint-plugin-template:** find inline templates on components in
blocks
([#​2238](https://redirect.github.com/angular-eslint/angular-eslint/pull/2238 ))
##### ❤️ Thank You
- Dave [@​reduckted](https://redirect.github.com/reduckted )
###
[`v19.1.0`](https://redirect.github.com/angular-eslint/angular-eslint/blob/HEAD/packages/template-parser/CHANGELOG.md#1910-2025-02-09 )
[Compare
Source](https://redirect.github.com/angular-eslint/angular-eslint/compare/v19.0.2...v19.1.0 )
This was a version bump only for template-parser to align it with other
projects, there were no code changes.
###
[`v19.0.2`](https://redirect.github.com/angular-eslint/angular-eslint/blob/HEAD/packages/template-parser/CHANGELOG.md#1902-2024-12-10 )
[Compare
Source](https://redirect.github.com/angular-eslint/angular-eslint/compare/v19.0.1...v19.0.2 )
This was a version bump only for template-parser to align it with other
projects, there were no code changes.
###
[`v19.0.1`](https://redirect.github.com/angular-eslint/angular-eslint/blob/HEAD/packages/template-parser/CHANGELOG.md#1901-2024-12-06 )
[Compare
Source](https://redirect.github.com/angular-eslint/angular-eslint/compare/v19.0.0...v19.0.1 )
This was a version bump only for template-parser to align it with other
projects, there were no code changes.
###
[`v19.0.0`](https://redirect.github.com/angular-eslint/angular-eslint/blob/HEAD/packages/template-parser/CHANGELOG.md#1900-2024-11-29 )
[Compare
Source](https://redirect.github.com/angular-eslint/angular-eslint/compare/v18.4.3...v19.0.0 )
This was a version bump only for template-parser to align it with other
projects, there were no code changes.
#### 18.4.3 (2024-11-29)
This was a version bump only for template-parser to align it with other
projects, there were no code changes.
#### 18.4.2 (2024-11-23)
This was a version bump only for template-parser to align it with other
projects, there were no code changes.
#### 18.4.1 (2024-11-18)
This was a version bump only for template-parser to align it with other
projects, there were no code changes.
#### 18.4.0 (2024-10-21)
##### 🩹 Fixes
- **template-parser:** traverse ng-content fallback content
([#​2031](https://redirect.github.com/angular-eslint/angular-eslint/pull/2031 ))
##### ❤️ Thank You
- Matt Lewis
[@​mattlewis92](https://redirect.github.com/mattlewis92 )
#### 18.3.1 (2024-09-11)
##### 🩹 Fixes
- **template-parser:** visit receiver of Call expression
- **template-parser:** visit receiver of Call expression"
- **template-parser:** visit receiver of Call expression
##### ❤️ Thank You
- James Henry
- Paweł Maniecki
#### 18.3.0 (2024-08-13)
This was a version bump only for template-parser to align it with other
projects, there were no code changes.
#### 18.2.0 (2024-07-31)
##### 🚀 Features
- update typescript-eslint to v8 stable, eslint v9.8.0
##### ❤️ Thank You
- James Henry
#### 18.1.0 (2024-07-01)
This was a version bump only for template-parser to align it with other
projects, there were no code changes.
#### 18.0.1 (2024-05-30)
This was a version bump only for template-parser to align it with other
projects, there were no code changes.
</details>
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.
♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about these
updates again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/ ).
View the [repository job
log](https://developer.mend.io/github/open-feature/js-sdk ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNDUuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIwNy4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-04-11 12:20:57 +02:00
OpenFeature Bot
7f81917226
chore(main): release angular-sdk 0.0.11 ( #1167 )
...
🤖 I have created a release *beep* *boop*
---
##
[0.0.11](https://github.com/open-feature/js-sdk/compare/angular-sdk-v0.0.10...angular-sdk-v0.0.11 )
(2025-04-11)
### ✨ New Features
* **angular:** add option for initial context injection
([aafdb43
](aafdb4382f
))
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
---------
Signed-off-by: OpenFeature Bot <109696520+openfeaturebot@users.noreply.github.com>
Signed-off-by: Lukas Reining <lukas.reining@codecentric.de>
Co-authored-by: Lukas Reining <lukas.reining@codecentric.de>
2025-04-11 12:08:35 +02:00
Lukas Reining
aafdb4382f
feat(angular): add option for initial context injection
...
Signed-off-by: Lukas Reining <lukas.reining@codecentric.de>
2025-04-11 12:02:02 +02:00
OpenFeature Bot
b60c3df372
chore(main): release core 1.8.0 ( #1155 )
...
🤖 I have created a release *beep* *boop*
---
##
[1.8.0](https://github.com/open-feature/js-sdk/compare/core-v1.7.2...core-v1.8.0 )
(2025-04-10)
### ✨ New Features
* add support for abort controllers to event handlers
([#1151 ](https://github.com/open-feature/js-sdk/issues/1151 ))
([6a22483
](6a224830fa
))
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
Signed-off-by: OpenFeature Bot <109696520+openfeaturebot@users.noreply.github.com>
2025-04-10 13:52:28 +00:00
Todd Baert
5b19eb035a
chore: use server src not dist in nest tests ( #1166 )
...
Fixes issue where nest test suite was running using dist not source of
server sdk.
Signed-off-by: Todd Baert <todd.baert@dynatrace.com>
2025-04-10 14:39:39 +02:00
Michael Beemer
5afe61f9e3
feat: add polyfill for react use hook ( #1157 )
...
## This PR
- adds an internal `use` polyfill
- refactors suspense support to maintain state across rerenders
### Notes
Previously, the Next.JS build process would timeout when using a
suspense flag hook. The reason for this is because the noop provider
(which is used during a build) is never ready. That meant that the
promise thrown to initiate suspense never resolved. To address this,
I've added global state using a weak map that's keyed off a provider. A
`useRef` won't help because the value is only retained if the component
renders successfully.
> [!NOTE]
> This unblocks suspense in our demo app but does not mean NextJS is
officially support (yet).
### How to test
I've added some tests and manually tested in the Toggle Shop.
---------
Signed-off-by: Michael Beemer <beeme1mr@users.noreply.github.com>
Co-authored-by: Todd Baert <todd.baert@dynatrace.com>
2025-04-10 12:06:19 +00:00
Todd Baert
60401b6cec
chore: prompt release of react v1 ( #1162 )
...
This proposes prompting the release of `@openfeature/react-sdk` 1.0.0.
My reasoning:
- as far as I know, there's no breaking changes on the horizon
- this is being used in production by multiple orgs
- it only depends on other 1.0+ deps
Please let me know what you think, especially if you have objections.
⚠️ this will not release 1.0, but will mark the NEXT release of
the react SDK as 1.0
Signed-off-by: Todd Baert <todd.baert@dynatrace.com>
2025-04-07 06:46:59 +00:00
Simon Schrottner
4482c2b33a
chore: add global maintainers to codeowners ( #1163 )
...
Global maintainers approval should also work as a codeowner approval
Signed-off-by: Simon Schrottner <simon.schrottner@dynatrace.com>
2025-04-05 16:18:44 +00:00
Thomas Poignant
2c5b37c79d
fix: Typo in name of the function
...
Signed-off-by: Thomas Poignant <thomas.poignant@gofeatureflag.org>
2025-03-28 17:37:58 +01:00
Todd Baert
cf89e7da24
chore: add nest to test script ( #1160 )
...
Somehow we forgot to add this module here.
Signed-off-by: Todd Baert <todd.baert@dynatrace.com>
2025-03-25 13:29:46 -04:00
Michael Beemer
ae8fce8753
feat: add a top-level method for accessing providers ( #1152 )
...
## This PR
- add a top-level method for accessing providers
### Notes
While working on some improvements to the way Suspense works in the
React SDK, I ran into a few scenarios were having access to the provider
itself was important. I needed a way to confidently tell that a provider
was the noop provider since it has special properties like never being
in a ready state. There are a few ways could could achieve this but I
noticed that the Java SDK [already has
methods](https://github.com/open-feature/java-sdk/blob/main/src/main/java/dev/openfeature/sdk/OpenFeatureAPI.java#L279 )
that expose the provider. It also allowed me to improve some of our
existing tests.
### How to test
Unit tests have been updated accordingly.
Signed-off-by: Michael Beemer <beeme1mr@users.noreply.github.com>
2025-03-06 20:50:06 +00:00
renovate[bot]
eec21dda82
chore(deps): update dependency uuid to v11 ( #1073 )
...
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [uuid](https://redirect.github.com/uuidjs/uuid ) | [`^9.0.1` ->
`^11.0.0`](https://renovatebot.com/diffs/npm/uuid/9.0.1/11.1.0 ) |
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Release Notes
<details>
<summary>uuidjs/uuid (uuid)</summary>
###
[`v11.1.0`](https://redirect.github.com/uuidjs/uuid/blob/HEAD/CHANGELOG.md#1110-2025-02-19 )
[Compare
Source](https://redirect.github.com/uuidjs/uuid/compare/v11.0.5...v11.1.0 )
##### Features
- update TS types to allow`Uint8Array` subtypes for `buffer` option
([#​865](https://redirect.github.com/uuidjs/uuid/issues/865 ))
([a5231e7](a5231e7e1b
))
###
[`v11.0.5`](https://redirect.github.com/uuidjs/uuid/blob/HEAD/CHANGELOG.md#1105-2025-01-09 )
[Compare
Source](https://redirect.github.com/uuidjs/uuid/compare/v11.0.4...v11.0.5 )
##### Bug Fixes
- add TS unit test, pin to typescript@5.0.4
([#​860](https://redirect.github.com/uuidjs/uuid/issues/860 ))
([24ac2fd](24ac2fd067
))
###
[`v11.0.4`](https://redirect.github.com/uuidjs/uuid/blob/HEAD/CHANGELOG.md#1104-2025-01-05 )
[Compare
Source](https://redirect.github.com/uuidjs/uuid/compare/v11.0.3...v11.0.4 )
##### Bug Fixes
- **docs:** insure -> ensure
([#​843](https://redirect.github.com/uuidjs/uuid/issues/843 ))
([d2a61e1](d2a61e154d
))
- exclude tests from published package
([#​840](https://redirect.github.com/uuidjs/uuid/issues/840 ))
([f992ff4](f992ff4780
))
- Test for invalid byte array sizes and ranges in `v1()`, `v4()`, and
`v7()`
([#​845](https://redirect.github.com/uuidjs/uuid/issues/845 ))
([e0ee900](e0ee90051e
))
###
[`v11.0.3`](https://redirect.github.com/uuidjs/uuid/blob/HEAD/CHANGELOG.md#1103-2024-11-04 )
[Compare
Source](https://redirect.github.com/uuidjs/uuid/compare/v11.0.2...v11.0.3 )
##### Bug Fixes
- apply stricter typing to the v\* signatures
([#​831](https://redirect.github.com/uuidjs/uuid/issues/831 ))
([c2d3fed](c2d3fed22c
))
- export internal uuid types
([#​833](https://redirect.github.com/uuidjs/uuid/issues/833 ))
([341edf4](341edf444c
))
- remove sourcemaps
([#​827](https://redirect.github.com/uuidjs/uuid/issues/827 ))
([b93ea10](b93ea101af
))
- revert "simplify type for v3 and v5"
([#​835](https://redirect.github.com/uuidjs/uuid/issues/835 ))
([e2dee69](e2dee691e9
))
###
[`v11.0.2`](https://redirect.github.com/uuidjs/uuid/blob/HEAD/CHANGELOG.md#1102-2024-10-28 )
[Compare
Source](https://redirect.github.com/uuidjs/uuid/compare/v11.0.1...v11.0.2 )
##### Bug Fixes
- remove wrapper.mjs
([2a18871](2a18871f00
))
- remove wrapper.mjs
([#​822](https://redirect.github.com/uuidjs/uuid/issues/822 ))
([6683ad3](6683ad38b0
))
###
[`v11.0.1`](https://redirect.github.com/uuidjs/uuid/blob/HEAD/CHANGELOG.md#1101-2024-10-27 )
[Compare
Source](https://redirect.github.com/uuidjs/uuid/compare/v11.0.0...v11.0.1 )
##### Bug Fixes
- restore package.json#browser field
([#​817](https://redirect.github.com/uuidjs/uuid/issues/817 ))
([ae8f386](ae8f38657b
))
###
[`v11.0.0`](https://redirect.github.com/uuidjs/uuid/blob/HEAD/CHANGELOG.md#1100-2024-10-27 )
[Compare
Source](https://redirect.github.com/uuidjs/uuid/compare/v10.0.0...v11.0.0 )
##### ⚠ BREAKING CHANGES
- refactor v1 internal state and options logic
([#​780](https://redirect.github.com/uuidjs/uuid/issues/780 ))
- refactor v7 internal state and options logic, fixes
[#​764](https://redirect.github.com/uuidjs/uuid/issues/764 )
([#​779](https://redirect.github.com/uuidjs/uuid/issues/779 ))
- Port to TypeScript, closes
[#​762](https://redirect.github.com/uuidjs/uuid/issues/762 )
([#​763](https://redirect.github.com/uuidjs/uuid/issues/763 ))
- update node support matrix (only support node 16-20)
([#​750](https://redirect.github.com/uuidjs/uuid/issues/750 ))
- This library always aims at supporting one EOLed LTS release which by
this time now is 12.x which has reached EOL 30 Apr 2022.
- Remove the minified UMD build from the package.
- Drop support for browsers that don't correctly implement const/let and
default arguments, and no longer transpile the browser build to ES2015.
- Although in practice this is currently a noop since the resulting
build does not change, the build will no longer transpiles future
changes for Node.js 8.x targets, so semantically this is still a
breaking change.
- Deep requiring specific algorithms of this library like
require('uuid/v4'), which has been deprecated in uuid@7, is no longer
supported.
- The default export, which used to be the v4() method but which was
already discouraged in v3.x of this library, has been removed.
- Explicitly note that deep imports of the different uuid version
functions are deprecated and no longer encouraged and that ECMAScript
module named imports should be used instead. Emit a deprecation warning
for people who deep-require the different algorithm variants.
- Remove builtin support for insecure random number generators in the
browser. Users who want that will have to supply their own random number
generator function.
- Remove support for generating v3 and v5 UUIDs in Node.js<4.x
- Convert code base to ECMAScript Modules (ESM) and release CommonJS
build for node and ESM build for browser bundlers.
##### Features
- add parse/stringify/validate/version/NIL APIs
([#​479](https://redirect.github.com/uuidjs/uuid/issues/479 ))
([0e6c10b](0e6c10ba1b
))
- add support for MAX uuid (new in RFC9562)
([#​714](https://redirect.github.com/uuidjs/uuid/issues/714 ))
([0385cd3](0385cd3f18
))
- add UMD build to npm package
([#​357](https://redirect.github.com/uuidjs/uuid/issues/357 ))
([4e75adf](4e75adf435
))
- add various es module and CommonJS examples
([b238510](b238510bf3
))
- enforce Conventional Commit style commit messages
([#​282](https://redirect.github.com/uuidjs/uuid/issues/282 ))
([0705cd5](0705cd5bae
))
- ensure that docs are up-to-date in CI
([ee5e77d](ee5e77db54
))
- hybrid CommonJS & ECMAScript modules build
([a3f078f](a3f078faa0
))
- improve performance of v1 string representation
([#​453](https://redirect.github.com/uuidjs/uuid/issues/453 ))
([0ee0b67](0ee0b67c37
))
- improve v4 performance by reusing random number array
([#​435](https://redirect.github.com/uuidjs/uuid/issues/435 ))
([bf4af0d](bf4af0d711
))
- optimize uuid.v1 by 1.3x uuid.v4 by 4.3x (430%)
([#​597](https://redirect.github.com/uuidjs/uuid/issues/597 ))
([3a033f6](3a033f6bab
))
- optimize V8 performance of bytesToUuid
([#​434](https://redirect.github.com/uuidjs/uuid/issues/434 ))
([e156415](e156415448
))
- Port to TypeScript, closes
[#​762](https://redirect.github.com/uuidjs/uuid/issues/762 )
([#​763](https://redirect.github.com/uuidjs/uuid/issues/763 ))
([1e0f987](1e0f9870db
))
- remove deep requires
([#​426](https://redirect.github.com/uuidjs/uuid/issues/426 ))
([daf72b8](daf72b84ce
))
- remove deprecated v4 string parameter
([#​454](https://redirect.github.com/uuidjs/uuid/issues/454 ))
([88ce3ca](88ce3ca0ba
))
- remove insecure fallback random number generator
([3a5842b](3a5842b141
))
- remove support for pre Node.js v4 Buffer API
([#​356](https://redirect.github.com/uuidjs/uuid/issues/356 ))
([b59b5c5](b59b5c5eca
))
- remove UMD build
([#​645](https://redirect.github.com/uuidjs/uuid/issues/645 ))
([e948a0f](e948a0f22b
)),
closes [#​620](https://redirect.github.com/uuidjs/uuid/issues/620 )
- rename repository to github:uuidjs/uuid
([#​351](https://redirect.github.com/uuidjs/uuid/issues/351 ))
([c37a518](c37a518e36
)),
closes [#​338](https://redirect.github.com/uuidjs/uuid/issues/338 )
- rename repository to github:uuidjs/uuid
([#​351](https://redirect.github.com/uuidjs/uuid/issues/351 ))
([e2d7314](e2d731463b
)),
closes [#​338](https://redirect.github.com/uuidjs/uuid/issues/338 )
- support v6 uuids
([#​754](https://redirect.github.com/uuidjs/uuid/issues/754 ))
([c4ed13e](c4ed13e715
))
- update node support matrix (only support node 16-20)
([#​750](https://redirect.github.com/uuidjs/uuid/issues/750 ))
([883b163](883b163b9a
))
- use native crypto.randomUUID when available
([#​600](https://redirect.github.com/uuidjs/uuid/issues/600 ))
([c9e076c](c9e076c852
))
- v8 support
([#​759](https://redirect.github.com/uuidjs/uuid/issues/759 ))
([35a5342](35a5342820
))
##### Bug Fixes
- 248
([#​251](https://redirect.github.com/uuidjs/uuid/issues/251 ))
([67d697c](67d697cd83
))
- 30, \_rb not defined for lesser node.js versions
([8a6c03f](8a6c03f969
))
- add CommonJS syntax example to README quickstart section
([#​417](https://redirect.github.com/uuidjs/uuid/issues/417 ))
([e0ec840](e0ec8402c7
))
- add deep-require proxies for local testing and adjust tests
([#​365](https://redirect.github.com/uuidjs/uuid/issues/365 ))
([7fedc79](7fedc79ac8
))
- add Jest/jsdom compatibility
([#​642](https://redirect.github.com/uuidjs/uuid/issues/642 ))
([16f9c46](16f9c469ed
))
- add missing exports and tests for new APIs
([#​495](https://redirect.github.com/uuidjs/uuid/issues/495 ))
([681e1da](681e1dabfb
))
- assignment to readonly property to allow running in strict mode
([#​270](https://redirect.github.com/uuidjs/uuid/issues/270 ))
([d062fdc](d062fdc14a
))
- change default export to named function
([#​545](https://redirect.github.com/uuidjs/uuid/issues/545 ))
([c57bc5a](c57bc5a9a0
))
- clean up esm builds for node and browser
([#​383](https://redirect.github.com/uuidjs/uuid/issues/383 ))
([59e6a49](59e6a49e7c
))
- export package.json required by react-native and bundlers
([#​449](https://redirect.github.com/uuidjs/uuid/issues/449 ))
([be1c8fe](be1c8fe9a3
)),
closes [#​444](https://redirect.github.com/uuidjs/uuid/issues/444 )
- fix [#​229](https://redirect.github.com/uuidjs/uuid/issues/229 )
([d9033cf](d9033cf358
))
- fix [#​284](https://redirect.github.com/uuidjs/uuid/issues/284 )
by setting function name in try-catch
([f2a60f2](f2a60f2fcd
))
- Get correct version of IE11 crypto
([#​274](https://redirect.github.com/uuidjs/uuid/issues/274 ))
([205e0ed](205e0ed1f7
))
- handle error when parameter is not set in v3 and v5
([#​622](https://redirect.github.com/uuidjs/uuid/issues/622 ))
([fcd7388](fcd7388169
))
- lazy load getRandomValues
([#​537](https://redirect.github.com/uuidjs/uuid/issues/537 ))
([16c8f6d](16c8f6df2f
)),
closes [#​536](https://redirect.github.com/uuidjs/uuid/issues/536 )
- make access to msCrypto consistent
([#​393](https://redirect.github.com/uuidjs/uuid/issues/393 ))
([8bf2a20](8bf2a20f35
))
- make deep require deprecation warning work in browsers
([#​409](https://redirect.github.com/uuidjs/uuid/issues/409 ))
([4b71107](4b71107d8c
))
- mem issue when generating uuid
([#​267](https://redirect.github.com/uuidjs/uuid/issues/267 ))
([c47702c](c47702c291
))
- missing v7 expectations in browser spec
([#​751](https://redirect.github.com/uuidjs/uuid/issues/751 ))
([f54a866](f54a866ced
))
- prepare package exports for webpack 5
([#​468](https://redirect.github.com/uuidjs/uuid/issues/468 ))
([8d6e6a5](8d6e6a5f89
))
- provide browser versions independent from module system
([#​380](https://redirect.github.com/uuidjs/uuid/issues/380 ))
([4344a22](4344a22e7a
))
- refactor v1 internal state and options logic
([#​780](https://redirect.github.com/uuidjs/uuid/issues/780 ))
([031b3d3](031b3d3d73
))
- refactor v7 internal state and options logic, fixes
[#​764](https://redirect.github.com/uuidjs/uuid/issues/764 )
([#​779](https://redirect.github.com/uuidjs/uuid/issues/779 ))
([9dbd1cd](9dbd1cd417
))
- remove v4 options default assignment preventing native.randomUUID from
being used
([#​786](https://redirect.github.com/uuidjs/uuid/issues/786 ))
([afe6232](afe62323c4
))
- revert "perf: remove superfluous call to toLowerCase
([#​677](https://redirect.github.com/uuidjs/uuid/issues/677 ))"
([#​738](https://redirect.github.com/uuidjs/uuid/issues/738 ))
([e267b90](e267b9073d
))
- run npm audit fix
([#​644](https://redirect.github.com/uuidjs/uuid/issues/644 ))
([04686f5](04686f54c5
))
- seq_hi shift for byte 6
([#​775](https://redirect.github.com/uuidjs/uuid/issues/775 ))
([1d532ca](1d532ca374
))
- simplify link in deprecation warning
([#​391](https://redirect.github.com/uuidjs/uuid/issues/391 ))
([bb2c8e4](bb2c8e4e9f
))
- support expo>=39.0.0
([#​515](https://redirect.github.com/uuidjs/uuid/issues/515 ))
([c65a0f3](c65a0f3fa7
)),
closes [#​375](https://redirect.github.com/uuidjs/uuid/issues/375 )
- tsconfig module type
([#​778](https://redirect.github.com/uuidjs/uuid/issues/778 ))
([7eff835](7eff835cba
))
- typo
([305d877](305d877790
))
- update links to match content in readme
([#​386](https://redirect.github.com/uuidjs/uuid/issues/386 ))
([44f2f86](44f2f86e9d
))
- upgrading from uuid3 broken link
([#​568](https://redirect.github.com/uuidjs/uuid/issues/568 ))
([1c849da](1c849da6e1
))
- use msCrypto if available. Fixes
[#​241](https://redirect.github.com/uuidjs/uuid/issues/241 )
([#​247](https://redirect.github.com/uuidjs/uuid/issues/247 ))
([1fef18b](1fef18baf2
))
##### Performance Improvements
- **nodejs:** introduce pool into default rng
([#​513](https://redirect.github.com/uuidjs/uuid/issues/513 ))
([7f1af04](7f1af044be
))
- remove superfluous call to toLowerCase
([#​677](https://redirect.github.com/uuidjs/uuid/issues/677 ))
([e53793f](e53793f5be
))
##### Documentation
- add note about removal of default export
([#​372](https://redirect.github.com/uuidjs/uuid/issues/372 ))
([12749b7](12749b700e
)),
closes [#​370](https://redirect.github.com/uuidjs/uuid/issues/370 )
- deprecated deep requiring of the different algorithm versions
([#​361](https://redirect.github.com/uuidjs/uuid/issues/361 ))
([c0bdf15](c0bdf15e41
))
##### Miscellaneous Chores
- drop node 10.x to upgrade dev dependencies
([#​653](https://redirect.github.com/uuidjs/uuid/issues/653 ))
([28a5712](28a571283f
))
- release 11.0.0
([#​805](https://redirect.github.com/uuidjs/uuid/issues/805 ))
([b003cde](b003cdeda4
))
##### Build System
- drop Node.js 8.x from babel transpile target
([#​603](https://redirect.github.com/uuidjs/uuid/issues/603 ))
([aa11485](aa11485826
))
- drop support for legacy browsers (IE11, Safari 10)
([#​604](https://redirect.github.com/uuidjs/uuid/issues/604 ))
([0f433e5](0f433e5ec4
))
###
[`v10.0.0`](https://redirect.github.com/uuidjs/uuid/blob/HEAD/CHANGELOG.md#1000-2024-06-07 )
[Compare
Source](https://redirect.github.com/uuidjs/uuid/compare/v9.0.1...v10.0.0 )
##### ⚠ BREAKING CHANGES
- update node support (drop node@12, node@14, add node@20)
([#​750](https://redirect.github.com/uuidjs/uuid/issues/750 ))
##### Features
- support support rfc9562 MAX uuid (new in RFC9562)
([#​714](https://redirect.github.com/uuidjs/uuid/issues/714 ))
([0385cd3](0385cd3f18
))
- support rfc9562 v6 uuids
([#​754](https://redirect.github.com/uuidjs/uuid/issues/754 ))
([c4ed13e](c4ed13e715
))
- support rfc9562 v7 uuids
([#​681](https://redirect.github.com/uuidjs/uuid/issues/681 ))
([db76a12](db76a12847
))
- update node support matrix (only support node 16-20)
([#​750](https://redirect.github.com/uuidjs/uuid/issues/750 ))
([883b163](883b163b9a
))
- support rfc9562 v8 uuids
([#​759](https://redirect.github.com/uuidjs/uuid/issues/759 ))
([35a5342](35a5342820
))
##### Bug Fixes
- revert "perf: remove superfluous call to toLowerCase
([#​677](https://redirect.github.com/uuidjs/uuid/issues/677 ))"
([#​738](https://redirect.github.com/uuidjs/uuid/issues/738 ))
([e267b90](e267b9073d
))
</details>
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.
♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/ ).
View the [repository job
log](https://developer.mend.io/github/open-feature/js-sdk ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC4xMzUuMiIsInVwZGF0ZWRJblZlciI6IjM5LjE3Ni4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-02-27 10:59:42 -05:00
Michael Beemer
6a224830fa
feat: add support for abort controllers to event handlers ( #1151 )
...
Signed-off-by: Michael Beemer <beeme1mr@users.noreply.github.com>
2025-02-26 16:17:28 -05:00
OpenFeature Bot
a703ee7a6f
chore(main): release core 1.7.2 ( #1150 )
...
🤖 I have created a release *beep* *boop*
---
##
[1.7.2](https://github.com/open-feature/js-sdk/compare/core-v1.7.1...core-v1.7.2 )
(2025-02-18)
### 🐛 Bug Fixes
* rename evaluation event property from data to body
([4c2b01e
](4c2b01e367
))
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
Signed-off-by: OpenFeature Bot <109696520+openfeaturebot@users.noreply.github.com>
2025-02-18 13:50:35 -05:00
Michael Beemer
4c2b01e367
fix: rename evaluation event property from data to body
...
Signed-off-by: Michael Beemer <beeme1mr@users.noreply.github.com>
2025-02-18 18:46:02 +00:00
OpenFeature Bot
40deec0414
chore(main): release angular-sdk 0.0.10 ( #1143 )
...
🤖 I have created a release *beep* *boop*
---
##
[0.0.10](https://github.com/open-feature/js-sdk/compare/angular-sdk-v0.0.9-experimental...angular-sdk-v0.0.10 )
(2025-02-13)
### 🧹 Chore
* **angular:** update angular package to a non-experimental version
([#1147 ](https://github.com/open-feature/js-sdk/issues/1147 ))
([5272f76
](5272f76c40
)),
closes [#1110 ](https://github.com/open-feature/js-sdk/issues/1110 )
* update sdk peer
([#1142 ](https://github.com/open-feature/js-sdk/issues/1142 ))
([8bb6206
](8bb620601e
))
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
Signed-off-by: OpenFeature Bot <109696520+openfeaturebot@users.noreply.github.com>
2025-02-13 21:11:57 +00:00
Lukas Reining
5272f76c40
chore(angular): update angular package to a non-experimental version ( #1147 )
...
Release Angular SDK as non-experimental version as described in #1110
Release-As: 0.0.10
Fixes #1110
Signed-off-by: Lukas Reining <lukas.reining@codecentric.de>
Co-authored-by: Michael Beemer <beeme1mr@users.noreply.github.com>
2025-02-13 22:08:56 +01:00
OpenFeature Bot
30004ea88f
chore(main): release core 1.7.1 ( #1149 )
...
🤖 I have created a release *beep* *boop*
---
##
[1.7.1](https://github.com/open-feature/js-sdk/compare/core-v1.7.0...core-v1.7.1 )
(2025-02-13)
### 🐛 Bug Fixes
* export missing telemetry functionality
([#1148 ](https://github.com/open-feature/js-sdk/issues/1148 ))
([dcbc300
](dcbc30090e
))
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
Signed-off-by: OpenFeature Bot <109696520+openfeaturebot@users.noreply.github.com>
2025-02-13 16:03:13 -05:00
Michael Beemer
dcbc30090e
fix: export missing telemetry functionality ( #1148 )
...
Signed-off-by: Michael Beemer <beeme1mr@users.noreply.github.com>
2025-02-13 15:59:56 -05:00
OpenFeature Bot
23ba0b3d8c
chore(main): release react-sdk 0.4.11 ( #1122 )
...
🤖 I have created a release *beep* *boop*
---
##
[0.4.11](https://github.com/open-feature/js-sdk/compare/react-sdk-v0.4.10...react-sdk-v0.4.11 )
(2025-02-07)
### ✨ New Features
* export useOpenFeatureClientStatus hook
([#1082 ](https://github.com/open-feature/js-sdk/issues/1082 ))
([4a6b860
](4a6b860544
))
### 🧹 Chore
* update sdk peer
([#1142 ](https://github.com/open-feature/js-sdk/issues/1142 ))
([8bb6206
](8bb620601e
))
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
Signed-off-by: OpenFeature Bot <109696520+openfeaturebot@users.noreply.github.com>
2025-02-07 21:05:41 +00:00
Michael Beemer
8bb620601e
chore: update sdk peer ( #1142 )
...
Signed-off-by: Michael Beemer <beeme1mr@users.noreply.github.com>
2025-02-07 16:02:31 -05:00
OpenFeature Bot
ffceec91bc
chore(main): release web-sdk 1.4.1 ( #1135 )
...
🤖 I have created a release *beep* *boop*
---
##
[1.4.1](https://github.com/open-feature/js-sdk/compare/web-sdk-v1.4.0...web-sdk-v1.4.1 )
(2025-02-07)
### 🐛 Bug Fixes
* msg missing when providers return err resolutions
([#1134 ](https://github.com/open-feature/js-sdk/issues/1134 ))
([bc9f6e4
](bc9f6e44da
))
### 🧹 Chore
* update core peer
([8bbd43e
](8bbd43e579
))
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
Signed-off-by: OpenFeature Bot <109696520+openfeaturebot@users.noreply.github.com>
Signed-off-by: Todd Baert <todd.baert@dynatrace.com>
Co-authored-by: Todd Baert <todd.baert@dynatrace.com>
2025-02-07 20:35:51 +00:00
OpenFeature Bot
045842027c
chore(main): release server-sdk 1.17.1 ( #1133 )
...
🤖 I have created a release *beep* *boop*
---
##
[1.17.1](https://github.com/open-feature/js-sdk/compare/server-sdk-v1.17.0...server-sdk-v1.17.1 )
(2025-02-07)
### 🐛 Bug Fixes
* msg missing when providers return err resolutions
([#1134 ](https://github.com/open-feature/js-sdk/issues/1134 ))
([bc9f6e4
](bc9f6e44da
))
### 🧹 Chore
* update core peer
([8bbd43e
](8bbd43e579
))
### 📚 Documentation
* fix eval context link
([#1132 ](https://github.com/open-feature/js-sdk/issues/1132 ))
([f6bc695
](f6bc6951a3
))
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
Signed-off-by: OpenFeature Bot <109696520+openfeaturebot@users.noreply.github.com>
2025-02-07 20:26:32 +00:00
Todd Baert
8bbd43e579
chore: update core peer
...
Signed-off-by: Todd Baert <todd.baert@dynatrace.com>
2025-02-07 15:22:52 -05:00
OpenFeature Bot
644b9a148d
chore(main): release core 1.7.0 ( #1137 )
...
🤖 I have created a release *beep* *boop*
---
##
[1.7.0](https://github.com/open-feature/js-sdk/compare/core-v1.6.0...core-v1.7.0 )
(2025-02-07)
### ✨ New Features
* add telemetry helper utils
([#1120 ](https://github.com/open-feature/js-sdk/issues/1120 ))
([1e93b3c
](1e93b3c6fa
))
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
Signed-off-by: OpenFeature Bot <109696520+openfeaturebot@users.noreply.github.com>
2025-02-07 20:01:55 +00:00
renovate[bot]
0f3e80cb64
chore(deps): update dependency eslint-plugin-jsdoc to v50.6.3 ( #1127 )
...
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[eslint-plugin-jsdoc](https://redirect.github.com/gajus/eslint-plugin-jsdoc )
| [`50.4.3` ->
`50.6.3`](https://renovatebot.com/diffs/npm/eslint-plugin-jsdoc/50.4.3/50.6.3 )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Release Notes
<details>
<summary>gajus/eslint-plugin-jsdoc (eslint-plugin-jsdoc)</summary>
###
[`v50.6.3`](https://redirect.github.com/gajus/eslint-plugin-jsdoc/releases/tag/v50.6.3 )
[Compare
Source](https://redirect.github.com/gajus/eslint-plugin-jsdoc/compare/v50.6.2...v50.6.3 )
##### Bug Fixes
- **`check-template-names`:** stop restricting template names to single
letters; fixes
[#​1352](https://redirect.github.com/gajus/eslint-plugin-jsdoc/issues/1352 )
([c283729](c283729387
))
###
[`v50.6.2`](https://redirect.github.com/gajus/eslint-plugin-jsdoc/releases/tag/v50.6.2 )
[Compare
Source](https://redirect.github.com/gajus/eslint-plugin-jsdoc/compare/v50.6.1...v50.6.2 )
##### Bug Fixes
- **`valid-types`:** update closure suppress types; fixes
[#​1349](https://redirect.github.com/gajus/eslint-plugin-jsdoc/issues/1349 )
([#​1350](https://redirect.github.com/gajus/eslint-plugin-jsdoc/issues/1350 ))
([a57f36e](a57f36e346
))
###
[`v50.6.1`](https://redirect.github.com/gajus/eslint-plugin-jsdoc/releases/tag/v50.6.1 )
[Compare
Source](https://redirect.github.com/gajus/eslint-plugin-jsdoc/compare/v50.6.0...v50.6.1 )
##### Bug Fixes
- **types:** update configs types
([#​1344](https://redirect.github.com/gajus/eslint-plugin-jsdoc/issues/1344 ))
([d2c6040](d2c60403bb
))
###
[`v50.6.0`](https://redirect.github.com/gajus/eslint-plugin-jsdoc/releases/tag/v50.6.0 )
[Compare
Source](https://redirect.github.com/gajus/eslint-plugin-jsdoc/compare/v50.5.0...v50.6.0 )
##### Features
- **lines-before-block:** move start-of-block checking behind
off-by-default `checkBlockStarts` option
([#​1341](https://redirect.github.com/gajus/eslint-plugin-jsdoc/issues/1341 ))
([f9b102d](f9b102dec5
))
###
[`v50.5.0`](https://redirect.github.com/gajus/eslint-plugin-jsdoc/releases/tag/v50.5.0 )
[Compare
Source](https://redirect.github.com/gajus/eslint-plugin-jsdoc/compare/v50.4.3...v50.5.0 )
##### Features
- ability to import iterateJsdoc
([#​1338](https://redirect.github.com/gajus/eslint-plugin-jsdoc/issues/1338 ))
([b9091f8](b9091f8da9
))
</details>
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Enabled.
♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/ ).
View the [repository job
log](https://developer.mend.io/github/open-feature/js-sdk ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNDUuMCIsInVwZGF0ZWRJblZlciI6IjM5LjE0NS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-02-07 19:57:53 +00:00
renovate[bot]
d202db53db
chore(deps): update dependency prettier to v3.4.2 ( #1130 )
...
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [prettier](https://prettier.io )
([source](https://redirect.github.com/prettier/prettier )) | [`3.3.3` ->
`3.4.2`](https://renovatebot.com/diffs/npm/prettier/3.3.3/3.4.2 ) |
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Release Notes
<details>
<summary>prettier/prettier (prettier)</summary>
###
[`v3.4.2`](https://redirect.github.com/prettier/prettier/blob/HEAD/CHANGELOG.md#342 )
[Compare
Source](https://redirect.github.com/prettier/prettier/compare/3.4.1...3.4.2 )
[diff](https://redirect.github.com/prettier/prettier/compare/3.4.1...3.4.2 )
##### Treat U+30A0 & U+30FB in Katakana Block as CJK
([#​16796](https://redirect.github.com/prettier/prettier/pull/16796 )
by [@​tats-u](https://redirect.github.com/tats-u ))
Prettier doesn't treat U+30A0 & U+30FB as Japanese. U+30FB is commonly
used in Japanese to represent the delimitation of first and last names
of non-Japanese people or “and”. The following “C言語・C++・Go・Rust” means
“C language & C++ & Go & Rust” in Japanese.
<!-- prettier-ignore -->
```md
<!-- Input (--prose-wrap=never) -->
C言
語
・
C++
・
Go
・
Rust
<!-- Prettier 3.4.1 -->
C言語・ C++ ・ Go ・ Rust
<!-- Prettier 3.4.2 -->
C言語・C++・Go・Rust
```
U+30A0 can be used as the replacement of the `-` in non-Japanese names
(e.g. “Saint-Saëns” (Charles Camille Saint-Saëns) can be represented as
“サン゠サーンス” in Japanese), but substituted by ASCII hyphen (U+002D) or
U+FF1D (full width hyphen) in many cases (e.g. “サン=サーンス” or “サン=サーンス”).
##### Fix comments print on class methods with decorators
([#​16891](https://redirect.github.com/prettier/prettier/pull/16891 )
by [@​fisker](https://redirect.github.com/fisker ))
<!-- prettier-ignore -->
```jsx
// Input
class A {
@​decorator
/**
* The method description
*
*/
async method(foo: Foo, bar: Bar) {
console.log(foo);
}
}
// Prettier 3.4.1
class A {
@​decorator
async /**
* The method description
*
*/
method(foo: Foo, bar: Bar) {
console.log(foo);
}
}
// Prettier 3.4.2
class A {
@​decorator
/**
* The method description
*
*/
async method(foo: Foo, bar: Bar) {
console.log(foo);
}
}
```
##### Fix non-idempotent formatting
([#​16899](https://redirect.github.com/prettier/prettier/pull/16899 )
by [@​seiyab](https://redirect.github.com/seiyab ))
This bug fix is not language-specific. You may see similar change in any
languages. This fixes regression in 3.4.0 so change caused by it should
yield same formatting as 3.3.3.
<!-- prettier-ignore -->
```jsx
// Input
<div>
foo
<span>longlonglonglonglonglonglonglonglonglonglonglonglonglonglongl foo</span>
, abc
</div>;
// Prettier 3.4.1 (first)
<div>
foo
<span>
longlonglonglonglonglonglonglonglonglonglonglonglonglonglongl foo
</span>, abc
</div>;
// Prettier 3.4.1 (second)
<div>
foo
<span>longlonglonglonglonglonglonglonglonglonglonglonglonglonglongl foo</span>
, abc
</div>;
// Prettier 3.4.2
<div>
foo
<span>longlonglonglonglonglonglonglonglonglonglonglonglonglonglongl foo</span>
, abc
</div>;
```
###
[`v3.4.1`](https://redirect.github.com/prettier/prettier/blob/HEAD/CHANGELOG.md#341 )
[Compare
Source](https://redirect.github.com/prettier/prettier/compare/3.4.0...3.4.1 )
[diff](https://redirect.github.com/prettier/prettier/compare/3.4.0...3.4.1 )
##### Remove unnecessary parentheses around assignment in `v-on`
([#​16887](https://redirect.github.com/prettier/prettier/pull/16887 )
by [@​fisker](https://redirect.github.com/fisker ))
<!-- prettier-ignore -->
```vue
<!-- Input -->
<template>
<button @​click="foo += 2">Click</button>
</template>
<!-- Prettier 3.4.0 -->
<template>
<button @​click="(foo += 2)">Click</button>
</template>
<!-- Prettier 3.4.1 -->
<template>
<button @​click="foo += 2">Click</button>
</template>
```
###
[`v3.4.0`](https://redirect.github.com/prettier/prettier/blob/HEAD/CHANGELOG.md#340 )
[Compare
Source](https://redirect.github.com/prettier/prettier/compare/3.3.3...3.4.0 )
[diff](https://redirect.github.com/prettier/prettier/compare/3.3.3...3.4.0 )
🔗 [Release Notes](https://prettier.io/blog/2024/11/26/3.4.0.html )
</details>
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Enabled.
♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/ ).
View the [repository job
log](https://developer.mend.io/github/open-feature/js-sdk ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNDUuMCIsInVwZGF0ZWRJblZlciI6IjM5LjE0NS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-02-07 19:57:00 +00:00
Michael Beemer
1e93b3c6fa
feat: add telemetry helper utils ( #1120 )
...
## This PR
- adds a method to core that returns a semantically valid flag
evaluation event
### Related Issues
Fixes #1118
## Notes
I've omitted value type because it is likely to be declined in the OTel
spec and adds complexity. We should consider removing that section from
[appendix
d](https://openfeature.dev/specification/appendix-d#evaluation-details ).
---------
Signed-off-by: Michael Beemer <beeme1mr@users.noreply.github.com>
Signed-off-by: Todd Baert <todd.baert@dynatrace.com>
Co-authored-by: Todd Baert <todd.baert@dynatrace.com>
2025-02-07 19:56:42 +00:00
Todd Baert
bc9f6e44da
fix: msg missing when providers return err resolutions ( #1134 )
...
Signed-off-by: Todd Baert <todd.baert@dynatrace.com>
2025-02-06 13:39:55 -05:00
Michael Beemer
f6bc6951a3
docs: fix eval context link ( #1132 )
...
Signed-off-by: Michael Beemer <beeme1mr@users.noreply.github.com>
2025-02-05 16:23:35 -05:00
renovate[bot]
9196ac9acd
chore(deps): update dependency jest-preset-angular to v14.5.1 ( #1128 )
...
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [jest-preset-angular](https://thymikee.github.io/jest-preset-angular )
([source](https://redirect.github.com/thymikee/jest-preset-angular )) |
[`14.2.4` ->
`14.5.1`](https://renovatebot.com/diffs/npm/jest-preset-angular/14.2.4/14.5.1 )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Release Notes
<details>
<summary>thymikee/jest-preset-angular (jest-preset-angular)</summary>
###
[`v14.5.1`](https://redirect.github.com/thymikee/jest-preset-angular/blob/HEAD/CHANGELOG.md#1451-2025-01-25 )
[Compare
Source](https://redirect.github.com/thymikee/jest-preset-angular/compare/v14.5.0...v14.5.1 )
##### Bug Fixes
- fix: properly handle types for presets module
([#​2945](https://redirect.github.com/thymikee/jest-preset-angular/issues/2945 ))
([e0323bd](https://redirect.github.com/thymikee/jest-preset-angular/commit/e0323bd )),
closes
[#​2945](https://redirect.github.com/thymikee/jest-preset-angular/issues/2945 )
###
[`v14.5.0`](https://redirect.github.com/thymikee/jest-preset-angular/blob/HEAD/CHANGELOG.md#1450-2025-01-10 )
[Compare
Source](https://redirect.github.com/thymikee/jest-preset-angular/compare/v14.4.2...v14.5.0 )
##### Features
- feat: add custom `jsdom` env
[#​2904](https://redirect.github.com/thymikee/jest-preset-angular/issues/2904 )
([6045a96](https://redirect.github.com/thymikee/jest-preset-angular/commit/6045a96 )),
closes
[#​2883](https://redirect.github.com/thymikee/jest-preset-angular/issues/2883 )
##### Code Refactoring
- refactor: add type for `serializers/index.ts`
([dd64d78](https://redirect.github.com/thymikee/jest-preset-angular/commit/dd64d78 ))
##### DEPRECATIONS
- refactor: deprecate `defaultTransformerOptions` in `presets`
([99d3112](https://redirect.github.com/thymikee/jest-preset-angular/commit/99d3112 ))
- refactor: deprecate `ngcc` util via `globalSetup`
([edeaa3f](https://redirect.github.com/thymikee/jest-preset-angular/commit/edeaa3f ))
###
[`v14.4.2`](https://redirect.github.com/thymikee/jest-preset-angular/blob/HEAD/CHANGELOG.md#1442-2024-12-03 )
[Compare
Source](https://redirect.github.com/thymikee/jest-preset-angular/compare/v14.4.1...v14.4.2 )
##### Bug Fixes
- fix: revert commit
[`ad7a297`](https://redirect.github.com/thymikee/jest-preset-angular/commit/ad7a297e )
to fix perf regression
([b19cd6e](https://redirect.github.com/thymikee/jest-preset-angular/commit/b19cd6e )),
closes
[#​2886](https://redirect.github.com/thymikee/jest-preset-angular/issues/2886 )
###
[`v14.4.1`](https://redirect.github.com/thymikee/jest-preset-angular/blob/HEAD/CHANGELOG.md#1441-2024-11-28 )
[Compare
Source](https://redirect.github.com/thymikee/jest-preset-angular/compare/v14.4.0...v14.4.1 )
##### Bug Fixes
- fix: remove `@angular-devkit/build-angular` from `peerDependencies`
([2f6bc3d](https://redirect.github.com/thymikee/jest-preset-angular/commit/2f6bc3d ))
###
[`v14.4.0`](https://redirect.github.com/thymikee/jest-preset-angular/blob/HEAD/CHANGELOG.md#1440-2024-11-27 )
[Compare
Source](https://redirect.github.com/thymikee/jest-preset-angular/compare/v14.3.3...v14.4.0 )
##### Features
- feat: add preset creator functions
([552922e](https://redirect.github.com/thymikee/jest-preset-angular/commit/552922e ))
- feat: add support for Angular 19
([4a73245](https://redirect.github.com/thymikee/jest-preset-angular/commit/4a73245 ))
##### Code Refactoring
- refactor: use `createCjsPreset` function for `jest-preset.js`
([9d18d0f](https://redirect.github.com/thymikee/jest-preset-angular/commit/9d18d0f ))
- refactor: deprecate legacy presets
([8da5630](https://redirect.github.com/thymikee/jest-preset-angular/commit/8da5630 ))
##### DEPRECATIONS
- Using `preset: 'jest-preset-angular'` is deprecated. The recommended
approach is
https://thymikee.github.io/jest-preset-angular/docs/getting-started/presets#createcjspresetoptions
- Using `preset: 'jest-preset-angular/presets/defaults-esm'` is
deprecated. The recommended approach is
https://thymikee.github.io/jest-preset-angular/docs/getting-started/presets#createesmpresetoptions
###
[`v14.3.3`](https://redirect.github.com/thymikee/jest-preset-angular/blob/HEAD/CHANGELOG.md#1433-2024-11-22 )
[Compare
Source](https://redirect.github.com/thymikee/jest-preset-angular/compare/v14.3.2...v14.3.3 )
##### Features
- feat: support configuring zoneless test env for CJS
([7a270b1](https://redirect.github.com/thymikee/jest-preset-angular/commit/7a270b1 ))
###
[`v14.3.2`](https://redirect.github.com/thymikee/jest-preset-angular/blob/HEAD/CHANGELOG.md#1432-2024-11-20 )
[Compare
Source](https://redirect.github.com/thymikee/jest-preset-angular/compare/v14.3.1...v14.3.2 )
##### Bug Fixes
- fix: include `version` from `package.json` into cache key
([de02c79](https://redirect.github.com/thymikee/jest-preset-angular/commit/de02c79 )),
closes
[#​2844](https://redirect.github.com/thymikee/jest-preset-angular/issues/2844 )
###
[`v14.3.1`](https://redirect.github.com/thymikee/jest-preset-angular/blob/HEAD/CHANGELOG.md#1431-2024-11-18 )
[Compare
Source](https://redirect.github.com/thymikee/jest-preset-angular/compare/v14.3.0...v14.3.1 )
##### Documentation
- docs: simplify `README.md` about installation and configuration
([79ea18b](https://redirect.github.com/thymikee/jest-preset-angular/commit/79ea18b ))
###
[`v14.3.0`](https://redirect.github.com/thymikee/jest-preset-angular/blob/HEAD/CHANGELOG.md#1430-2024-11-15 )
[Compare
Source](https://redirect.github.com/thymikee/jest-preset-angular/compare/v14.2.4...v14.3.0 )
##### Features
- feat: add new setup test env functions
([21c0238](https://redirect.github.com/thymikee/jest-preset-angular/commit/21c0238 )),
closes
[#​354](https://redirect.github.com/thymikee/jest-preset-angular/issues/354 )
[#​2755](https://redirect.github.com/thymikee/jest-preset-angular/issues/2755 )
- feat: build package with type definitions
([a269daa](https://redirect.github.com/thymikee/jest-preset-angular/commit/a269daa ))
- feat: deprecate `setup-jest.js` and `setup-jest.mjs`
([a304036](https://redirect.github.com/thymikee/jest-preset-angular/commit/a304036 ))
##### Code Refactoring
- test: switch example app test config files to ts
([e61f1ff](https://redirect.github.com/thymikee/jest-preset-angular/commit/e61f1ff ))
</details>
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Enabled.
♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/ ).
View the [repository job
log](https://developer.mend.io/github/open-feature/js-sdk ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNDUuMCIsInVwZGF0ZWRJblZlciI6IjM5LjE0NS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-02-03 19:27:29 +00:00
renovate[bot]
c577e0d28e
chore(deps): update dependency eslint-plugin-jest to v28.11.0 ( #1126 )
...
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[eslint-plugin-jest](https://redirect.github.com/jest-community/eslint-plugin-jest )
| [`28.8.3` ->
`28.11.0`](https://renovatebot.com/diffs/npm/eslint-plugin-jest/28.8.3/28.11.0 )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Release Notes
<details>
<summary>jest-community/eslint-plugin-jest
(eslint-plugin-jest)</summary>
###
[`v28.11.0`](https://redirect.github.com/jest-community/eslint-plugin-jest/blob/HEAD/CHANGELOG.md#28110-2025-01-15 )
[Compare
Source](https://redirect.github.com/jest-community/eslint-plugin-jest/compare/v28.10.1...v28.11.0 )
##### Features
- **valid-expect:** allow calling `expect` with no arguments
([#​1688](https://redirect.github.com/jest-community/eslint-plugin-jest/issues/1688 ))
([ff0349e](ff0349ea0b
))
####
[28.10.1](https://redirect.github.com/jest-community/eslint-plugin-jest/compare/v28.10.0...v28.10.1 )
(2025-01-15)
##### Bug Fixes
- **padding-around-test-blocks:** update description
([#​1691](https://redirect.github.com/jest-community/eslint-plugin-jest/issues/1691 ))
([9cb4ecc](9cb4eccab0
))
###
[`v28.10.1`](https://redirect.github.com/jest-community/eslint-plugin-jest/blob/HEAD/CHANGELOG.md#28101-2025-01-15 )
[Compare
Source](https://redirect.github.com/jest-community/eslint-plugin-jest/compare/v28.10.0...v28.10.1 )
##### Bug Fixes
- **padding-around-test-blocks:** update description
([#​1691](https://redirect.github.com/jest-community/eslint-plugin-jest/issues/1691 ))
([9cb4ecc](9cb4eccab0
))
###
[`v28.10.0`](https://redirect.github.com/jest-community/eslint-plugin-jest/blob/HEAD/CHANGELOG.md#28100-2024-12-19 )
[Compare
Source](https://redirect.github.com/jest-community/eslint-plugin-jest/compare/v28.9.0...v28.10.0 )
##### Features
- **unbound-method:** ignore functions passed to `jest.mocked`
([#​1681](https://redirect.github.com/jest-community/eslint-plugin-jest/issues/1681 ))
([d868636](d868636623
))
###
[`v28.9.0`](https://redirect.github.com/jest-community/eslint-plugin-jest/blob/HEAD/CHANGELOG.md#2890-2024-11-05 )
[Compare
Source](https://redirect.github.com/jest-community/eslint-plugin-jest/compare/v28.8.3...v28.9.0 )
##### Features
- add TypeScript types
([#​1667](https://redirect.github.com/jest-community/eslint-plugin-jest/issues/1667 ))
([1ce1258](1ce12588e7
))
####
[28.8.3](https://redirect.github.com/jest-community/eslint-plugin-jest/compare/v28.8.2...v28.8.3 )
(2024-09-04)
##### Bug Fixes
- **prefer-importing-jest-globals:** don't add imports in the middle of
statements
([#​1645](https://redirect.github.com/jest-community/eslint-plugin-jest/issues/1645 ))
([9c4197c](9c4197c91f
))
####
[28.8.2](https://redirect.github.com/jest-community/eslint-plugin-jest/compare/v28.8.1...v28.8.2 )
(2024-09-02)
##### Performance Improvements
- **prefer-importing-jest-globals:** stop collecting import specifiers
for no reason
([#​1646](https://redirect.github.com/jest-community/eslint-plugin-jest/issues/1646 ))
([0660242](066024289e
))
####
[28.8.1](https://redirect.github.com/jest-community/eslint-plugin-jest/compare/v28.8.0...v28.8.1 )
(2024-08-29)
##### Bug Fixes
- **prefer-importing-jest-globals:** support typescript-eslint parser
([#​1639](https://redirect.github.com/jest-community/eslint-plugin-jest/issues/1639 ))
([307f6a7](307f6a7b3a
))
</details>
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Enabled.
♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/ ).
View the [repository job
log](https://developer.mend.io/github/open-feature/js-sdk ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNDUuMCIsInVwZGF0ZWRJblZlciI6IjM5LjE0NS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-02-03 18:00:38 +00:00
renovate[bot]
31eff43554
chore(deps): update nest monorepo to v10.4.15 ( #1124 )
...
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@nestjs/common](https://nestjs.com )
([source](https://redirect.github.com/nestjs/nest/tree/HEAD/packages/common ))
| [`10.4.6` ->
`10.4.15`](https://renovatebot.com/diffs/npm/@nestjs%2fcommon/10.4.6/10.4.15 )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
| [@nestjs/core](https://nestjs.com )
([source](https://redirect.github.com/nestjs/nest/tree/HEAD/packages/core ))
| [`10.4.6` ->
`10.4.15`](https://renovatebot.com/diffs/npm/@nestjs%2fcore/10.4.6/10.4.15 )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
| [@nestjs/platform-express](https://nestjs.com )
([source](https://redirect.github.com/nestjs/nest/tree/HEAD/packages/platform-express ))
| [`10.4.6` ->
`10.4.15`](https://renovatebot.com/diffs/npm/@nestjs%2fplatform-express/10.4.6/10.4.15 )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
| [@nestjs/testing](https://nestjs.com )
([source](https://redirect.github.com/nestjs/nest/tree/HEAD/packages/testing ))
| [`10.4.6` ->
`10.4.15`](https://renovatebot.com/diffs/npm/@nestjs%2ftesting/10.4.6/10.4.15 )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Release Notes
<details>
<summary>nestjs/nest (@​nestjs/common)</summary>
###
[`v10.4.15`](https://redirect.github.com/nestjs/nest/releases/tag/v10.4.15 )
[Compare
Source](https://redirect.github.com/nestjs/nest/compare/v10.4.14...v10.4.15 )
##### v10.4.15 (2024-12-09)
##### Dependencies
- `platform-express`
- [#​14282](https://redirect.github.com/nestjs/nest/pull/14282 )
fix(deps): update dependency express to v4.21.2
([@​renovate\[bot\]](https://redirect.github.com/apps/renovate ))
###
[`v10.4.14`](https://redirect.github.com/nestjs/nest/compare/v10.4.13...v10.4.14 )
[Compare
Source](https://redirect.github.com/nestjs/nest/compare/v10.4.13...v10.4.14 )
###
[`v10.4.13`](https://redirect.github.com/nestjs/nest/compare/v10.4.12...1eba0121a089be0e4880f37503dab7870602bb8e )
[Compare
Source](https://redirect.github.com/nestjs/nest/compare/v10.4.12...v10.4.13 )
###
[`v10.4.12`](https://redirect.github.com/nestjs/nest/releases/tag/v10.4.12 )
[Compare
Source](https://redirect.github.com/nestjs/nest/compare/v10.4.11...v10.4.12 )
##### v10.4.12 (2024-11-29)
##### Bug fixes
- `common`
- [#​14241](https://redirect.github.com/nestjs/nest/pull/14241 )
fix(common): enforce string type in validationpipe
([@​LhonRafaat](https://redirect.github.com/LhonRafaat ))
##### Dependencies
- Other
- [#​14243](https://redirect.github.com/nestjs/nest/pull/14243 )
chore(deps): update dependency
[@​types/node](https://redirect.github.com/types/node ) to v20.17.9
([@​renovate\[bot\]](https://redirect.github.com/apps/renovate ))
- [#​14240](https://redirect.github.com/nestjs/nest/pull/14240 )
chore(deps): update dependency
[@​types/multer](https://redirect.github.com/types/multer ) to
v1.4.12
([@​renovate\[bot\]](https://redirect.github.com/apps/renovate ))
- [#​14239](https://redirect.github.com/nestjs/nest/pull/14239 )
chore(deps): update dependency
[@​types/chai](https://redirect.github.com/types/chai ) to v4.3.20
([@​renovate\[bot\]](https://redirect.github.com/apps/renovate ))
- [#​14237](https://redirect.github.com/nestjs/nest/pull/14237 )
chore(deps): update confluentinc/cp-zookeeper docker tag to v7.7.2
([@​renovate\[bot\]](https://redirect.github.com/apps/renovate ))
- [#​14236](https://redirect.github.com/nestjs/nest/pull/14236 )
chore(deps): update confluentinc/cp-kafka docker tag to v7.7.2
([@​renovate\[bot\]](https://redirect.github.com/apps/renovate ))
- [#​12253](https://redirect.github.com/nestjs/nest/pull/12253 )
fix(deps): update apollo graphql packages
([@​renovate\[bot\]](https://redirect.github.com/apps/renovate ))
- [#​14235](https://redirect.github.com/nestjs/nest/pull/14235 )
chore(deps-dev): bump
[@​commitlint/config-angular](https://redirect.github.com/commitlint/config-angular )
from 19.5.0 to 19.6.0
([@​dependabot\[bot\]](https://redirect.github.com/apps/dependabot ))
- [#​14233](https://redirect.github.com/nestjs/nest/pull/14233 )
chore(deps): update nest monorepo
([@​renovate\[bot\]](https://redirect.github.com/apps/renovate ))
- [#​14232](https://redirect.github.com/nestjs/nest/pull/14232 )
fix(deps): update dependency path-to-regexp to v3.3.0 \[security]
([@​renovate\[bot\]](https://redirect.github.com/apps/renovate ))
- [#​14229](https://redirect.github.com/nestjs/nest/pull/14229 )
chore(deps): update mongo docker tag to v8
([@​renovate\[bot\]](https://redirect.github.com/apps/renovate ))
- [#​14228](https://redirect.github.com/nestjs/nest/pull/14228 )
chore(deps): update dependency
[@​types/node](https://redirect.github.com/types/node ) to v22.10.0
([@​renovate\[bot\]](https://redirect.github.com/apps/renovate ))
- [#​14227](https://redirect.github.com/nestjs/nest/pull/14227 )
fix(deps): update nest-graphql monorepo to v12.2.1
([@​renovate\[bot\]](https://redirect.github.com/apps/renovate ))
- [#​14224](https://redirect.github.com/nestjs/nest/pull/14224 )
fix(deps): update dependency sequelize to v6.37.5
([@​renovate\[bot\]](https://redirect.github.com/apps/renovate ))
- [#​14230](https://redirect.github.com/nestjs/nest/pull/14230 )
chore(deps): update mysql docker tag to v9
([@​renovate\[bot\]](https://redirect.github.com/apps/renovate ))
- [#​14231](https://redirect.github.com/nestjs/nest/pull/14231 )
fix(deps): update dependency
[@​nestjs/swagger](https://redirect.github.com/nestjs/swagger ) to
v8
([@​renovate\[bot\]](https://redirect.github.com/apps/renovate ))
- `common`, `core`, `microservices`, `platform-express`,
`platform-fastify`, `platform-socket.io`, `platform-ws`, `testing`,
`websockets`
- [#​14226](https://redirect.github.com/nestjs/nest/pull/14226 )
fix(deps): update dependency tslib to v2.8.1
([@​renovate\[bot\]](https://redirect.github.com/apps/renovate ))
- `platform-socket.io`
- [#​14225](https://redirect.github.com/nestjs/nest/pull/14225 )
fix(deps): update dependency socket.io to v4.8.1
([@​renovate\[bot\]](https://redirect.github.com/apps/renovate ))
##### Committers: 1
- Lhon ([@​LhonRafaat](https://redirect.github.com/LhonRafaat ))
###
[`v10.4.11`](https://redirect.github.com/nestjs/nest/compare/v10.4.10...v10.4.11 )
[Compare
Source](https://redirect.github.com/nestjs/nest/compare/v10.4.10...v10.4.11 )
###
[`v10.4.10`](https://redirect.github.com/nestjs/nest/releases/tag/v10.4.10 )
[Compare
Source](https://redirect.github.com/nestjs/nest/compare/v10.4.9...v10.4.10 )
##### v10.4.10 (2024-11-27)
##### Bug fixes
- `platform-socket.io`, `websockets`
- [#​14204](https://redirect.github.com/nestjs/nest/pull/14204 )
fix(websockets): ensure non-shared servers call close method
([@​sapenlei](https://redirect.github.com/sapenlei ))
##### Dependencies
- [#​14221](https://redirect.github.com/nestjs/nest/pull/14221 )
chore(deps): update mysql docker tag to v8.4.3
([@​renovate\[bot\]](https://redirect.github.com/apps/renovate ))
- [#​14220](https://redirect.github.com/nestjs/nest/pull/14220 )
chore(deps): update dependency webpack to v5.96.1
([@​renovate\[bot\]](https://redirect.github.com/apps/renovate ))
- [#​14219](https://redirect.github.com/nestjs/nest/pull/14219 )
chore(deps): update dependency nodemon to v3.1.7
([@​renovate\[bot\]](https://redirect.github.com/apps/renovate ))
- [#​14218](https://redirect.github.com/nestjs/nest/pull/14218 )
chore(deps): update confluentinc/cp-zookeeper docker tag to v7.7.1
([@​renovate\[bot\]](https://redirect.github.com/apps/renovate ))
- [#​14217](https://redirect.github.com/nestjs/nest/pull/14217 )
chore(deps): update confluentinc/cp-kafka docker tag to v7.7.1
([@​renovate\[bot\]](https://redirect.github.com/apps/renovate ))
- [#​14216](https://redirect.github.com/nestjs/nest/pull/14216 )
fix(deps): update dependency rimraf to v5.0.10
([@​renovate\[bot\]](https://redirect.github.com/apps/renovate ))
- [#​14215](https://redirect.github.com/nestjs/nest/pull/14215 )
fix(deps): update dependency dotenv to v16.4.5
([@​renovate\[bot\]](https://redirect.github.com/apps/renovate ))
- [#​14214](https://redirect.github.com/nestjs/nest/pull/14214 )
fix(deps): update dependency
[@​grpc/reflection](https://redirect.github.com/grpc/reflection )
to v1.0.4
([@​renovate\[bot\]](https://redirect.github.com/apps/renovate ))
- [#​12940](https://redirect.github.com/nestjs/nest/pull/12940 )
fix(deps): update dependency mongoose to v8.8.3
([@​renovate\[bot\]](https://redirect.github.com/apps/renovate ))
- [#​14207](https://redirect.github.com/nestjs/nest/pull/14207 )
chore(deps): update dependency
[@​types/dotenv](https://redirect.github.com/types/dotenv ) to
v8.2.3
([@​renovate\[bot\]](https://redirect.github.com/apps/renovate ))
- [#​14208](https://redirect.github.com/nestjs/nest/pull/14208 )
chore(deps): update dependency
[@​types/node](https://redirect.github.com/types/node ) to v20.17.8
([@​renovate\[bot\]](https://redirect.github.com/apps/renovate ))
- [#​14209](https://redirect.github.com/nestjs/nest/pull/14209 )
chore(deps): update dependency amqplib to v0.10.5
([@​renovate\[bot\]](https://redirect.github.com/apps/renovate ))
- [#​14212](https://redirect.github.com/nestjs/nest/pull/14212 )
chore(deps): update dependency webpack to v5.94.0 \[security]
([@​renovate\[bot\]](https://redirect.github.com/apps/renovate ))
- [#​14210](https://redirect.github.com/nestjs/nest/pull/14210 )
chore(deps): update dependency husky to v9.1.7
([@​renovate\[bot\]](https://redirect.github.com/apps/renovate ))
- [#​14211](https://redirect.github.com/nestjs/nest/pull/14211 )
chore(deps): update nest monorepo
([@​renovate\[bot\]](https://redirect.github.com/apps/renovate ))
- [#​14206](https://redirect.github.com/nestjs/nest/pull/14206 )
chore(deps-dev): bump mongoose from 8.8.1 to 8.8.3
([@​dependabot\[bot\]](https://redirect.github.com/apps/dependabot ))
##### Committers: 1
- sapenlei ([@​sapenlei](https://redirect.github.com/sapenlei ))
###
[`v10.4.9`](https://redirect.github.com/nestjs/nest/releases/tag/v10.4.9 )
[Compare
Source](https://redirect.github.com/nestjs/nest/compare/v10.4.8...v10.4.9 )
##### v10.4.9 (2024-11-25)
##### Bug fixes
- `core`, `microservices`
- [#​13923](https://redirect.github.com/nestjs/nest/pull/13923 )
fix(core): merge req context with tenant payload in the request instance
([@​DylanVeldra](https://redirect.github.com/DylanVeldra ))
- `websockets`
- [#​14185](https://redirect.github.com/nestjs/nest/pull/14185 )
fix(websockets): Prevent HTTP server early close in Socket.IO shutdown
([@​sapenlei](https://redirect.github.com/sapenlei ))
- `common`
- [#​14181](https://redirect.github.com/nestjs/nest/pull/14181 )
fix(common): fallback to empty string for enums when validating (swc
builder)
([@​kamilmysliwiec](https://redirect.github.com/kamilmysliwiec ))
- `core`
- [#​13804](https://redirect.github.com/nestjs/nest/pull/13804 )
fix(core): dependencies not resolving for transient lazy providers
([@​patrickacioli](https://redirect.github.com/patrickacioli ))
- `microservices`
- [#​14163](https://redirect.github.com/nestjs/nest/pull/14163 )
fix(microservices): grpc client streaming bugs
([@​kamilmysliwiec](https://redirect.github.com/kamilmysliwiec ))
##### Enhancements
- `common`, `core`
- [#​14175](https://redirect.github.com/nestjs/nest/pull/14175 )
fix(common,core): align the logic of optional provider
([@​micalevisk](https://redirect.github.com/micalevisk ))
- `microservices`
- [#​12954](https://redirect.github.com/nestjs/nest/pull/12954 )
feat: emit batch ([@​gunb0s](https://redirect.github.com/gunb0s ))
##### Dependencies
- Other
- [#​14192](https://redirect.github.com/nestjs/nest/pull/14192 )
chore(deps): update dependency webpack to v5.94.0 \[security]
([@​renovate\[bot\]](https://redirect.github.com/apps/renovate ))
- [#​14188](https://redirect.github.com/nestjs/nest/pull/14188 )
chore(deps): bump cross-spawn from 7.0.3 to 7.0.6 in
/sample/30-event-emitter
([@​dependabot\[bot\]](https://redirect.github.com/apps/dependabot ))
- [#​14187](https://redirect.github.com/nestjs/nest/pull/14187 )
chore(deps): bump cookie and
[@​nestjs/platform-express](https://redirect.github.com/nestjs/platform-express )
in /sample/34-using-esm-packages
([@​dependabot\[bot\]](https://redirect.github.com/apps/dependabot ))
- [#​14189](https://redirect.github.com/nestjs/nest/pull/14189 )
chore(deps): bump cross-spawn from 7.0.3 to 7.0.6 in /sample/19-auth-jwt
([@​dependabot\[bot\]](https://redirect.github.com/apps/dependabot ))
- [#​14186](https://redirect.github.com/nestjs/nest/pull/14186 )
chore(deps): bump cross-spawn from 7.0.3 to 7.0.6 in
/sample/31-graphql-federation-code-first/posts-application
([@​dependabot\[bot\]](https://redirect.github.com/apps/dependabot ))
- [#​14183](https://redirect.github.com/nestjs/nest/pull/14183 )
chore(deps): bump cross-spawn from 7.0.3 to 7.0.6 in
/sample/32-graphql-federation-schema-first/posts-application
([@​dependabot\[bot\]](https://redirect.github.com/apps/dependabot ))
- [#​14176](https://redirect.github.com/nestjs/nest/pull/14176 )
chore(deps): bump cross-spawn from 7.0.3 to 7.0.6 in
/sample/32-graphql-federation-schema-first/users-application
([@​dependabot\[bot\]](https://redirect.github.com/apps/dependabot ))
- [#​14179](https://redirect.github.com/nestjs/nest/pull/14179 )
chore(deps-dev): bump
[@​types/mocha](https://redirect.github.com/types/mocha ) from
10.0.9 to 10.0.10
([@​dependabot\[bot\]](https://redirect.github.com/apps/dependabot ))
- [#​14174](https://redirect.github.com/nestjs/nest/pull/14174 )
chore(deps): bump cross-spawn from 7.0.3 to 7.0.6 in
/sample/22-graphql-prisma
([@​dependabot\[bot\]](https://redirect.github.com/apps/dependabot ))
- [#​14173](https://redirect.github.com/nestjs/nest/pull/14173 )
chore(deps): bump cross-spawn from 7.0.3 to 7.0.6 in /sample/28-sse
([@​dependabot\[bot\]](https://redirect.github.com/apps/dependabot ))
- [#​14165](https://redirect.github.com/nestjs/nest/pull/14165 )
chore(deps-dev): bump
[@​typescript-eslint/parser](https://redirect.github.com/typescript-eslint/parser )
from 8.14.0 to 8.15.0
([@​dependabot\[bot\]](https://redirect.github.com/apps/dependabot ))
- [#​14171](https://redirect.github.com/nestjs/nest/pull/14171 )
chore(deps): bump cross-spawn from 7.0.3 to 7.0.6 in /sample/11-swagger
([@​dependabot\[bot\]](https://redirect.github.com/apps/dependabot ))
- [#​14172](https://redirect.github.com/nestjs/nest/pull/14172 )
chore(deps): bump cookie and
[@​nestjs/platform-express](https://redirect.github.com/nestjs/platform-express )
in /sample/35-use-esm-package-after-node22
([@​dependabot\[bot\]](https://redirect.github.com/apps/dependabot ))
- [#​14170](https://redirect.github.com/nestjs/nest/pull/14170 )
chore(deps): bump cross-spawn from 7.0.3 to 7.0.6 in
/sample/24-serve-static
([@​dependabot\[bot\]](https://redirect.github.com/apps/dependabot ))
- [#​14169](https://redirect.github.com/nestjs/nest/pull/14169 )
chore(deps): bump cross-spawn from 7.0.3 to 7.0.6 in /sample/15-mvc
([@​dependabot\[bot\]](https://redirect.github.com/apps/dependabot ))
- [#​14164](https://redirect.github.com/nestjs/nest/pull/14164 )
chore(deps): bump cross-spawn from 7.0.3 to 7.0.6 in /sample/01-cats-app
([@​dependabot\[bot\]](https://redirect.github.com/apps/dependabot ))
- [#​14167](https://redirect.github.com/nestjs/nest/pull/14167 )
chore(deps-dev): bump
[@​typescript-eslint/eslint-plugin](https://redirect.github.com/typescript-eslint/eslint-plugin )
from 8.14.0 to 8.15.0
([@​dependabot\[bot\]](https://redirect.github.com/apps/dependabot ))
- [#​14161](https://redirect.github.com/nestjs/nest/pull/14161 )
chore(deps): bump cross-spawn from 7.0.3 to 7.0.5 in
/sample/25-dynamic-modules
([@​dependabot\[bot\]](https://redirect.github.com/apps/dependabot ))
- [#​14159](https://redirect.github.com/nestjs/nest/pull/14159 )
chore(deps): bump cross-spawn from 7.0.3 to 7.0.5 in
/sample/33-graphql-mercurius
([@​dependabot\[bot\]](https://redirect.github.com/apps/dependabot ))
- [#​13632](https://redirect.github.com/nestjs/nest/pull/13632 )
fix(deps): update dependency mysql2 to v3.9.8 \[security]
([@​renovate\[bot\]](https://redirect.github.com/apps/renovate ))
- [#​14151](https://redirect.github.com/nestjs/nest/pull/14151 )
chore(deps): bump cross-spawn from 7.0.3 to 7.0.5 in
/sample/27-scheduling
([@​dependabot\[bot\]](https://redirect.github.com/apps/dependabot ))
- [#​14155](https://redirect.github.com/nestjs/nest/pull/14155 )
build(sample): replace cli-color with smaller and faster ansis
([@​webdiscus](https://redirect.github.com/webdiscus ))
- [#​14146](https://redirect.github.com/nestjs/nest/pull/14146 )
chore(deps): bump cookie and
[@​nestjs/platform-express](https://redirect.github.com/nestjs/platform-express )
in /sample/28-sse
([@​dependabot\[bot\]](https://redirect.github.com/apps/dependabot ))
- [#​14149](https://redirect.github.com/nestjs/nest/pull/14149 )
chore(deps): bump cross-spawn from 7.0.3 to 7.0.5 in
/sample/32-graphql-federation-schema-first/gateway
([@​dependabot\[bot\]](https://redirect.github.com/apps/dependabot ))
- [#​12995](https://redirect.github.com/nestjs/nest/pull/12995 )
chore(deps): update dependency supertest to v6.3.4
([@​renovate\[bot\]](https://redirect.github.com/apps/renovate ))
- [#​12815](https://redirect.github.com/nestjs/nest/pull/12815 )
chore(deps): update dependency
[@​types/node](https://redirect.github.com/types/node ) to v20.17.6
([@​renovate\[bot\]](https://redirect.github.com/apps/renovate ))
- [#​14147](https://redirect.github.com/nestjs/nest/pull/14147 )
chore: upgrade deps
([@​kamilmysliwiec](https://redirect.github.com/kamilmysliwiec ))
- [#​14144](https://redirect.github.com/nestjs/nest/pull/14144 )
chore(deps): bump cookie, light-my-request and
[@​nestjs/platform-fastify](https://redirect.github.com/nestjs/platform-fastify )
in /sample/33-graphql-mercurius
([@​dependabot\[bot\]](https://redirect.github.com/apps/dependabot ))
- `platform-fastify`
- [#​14191](https://redirect.github.com/nestjs/nest/pull/14191 )
chore(deps): bump light-my-request from 6.1.0 to 6.3.0
([@​dependabot\[bot\]](https://redirect.github.com/apps/dependabot ))
##### Committers: 7
- Kamil Mysliwiec
([@​kamilmysliwiec](https://redirect.github.com/kamilmysliwiec ))
- Micael Levi L. Cavalcante
([@​micalevisk](https://redirect.github.com/micalevisk ))
- Patrick Acioli
([@​patrickacioli](https://redirect.github.com/patrickacioli ))
- [@​DylanVeldra](https://redirect.github.com/DylanVeldra )
- [@​webdiscus](https://redirect.github.com/webdiscus )
- cain ([@​gunb0s](https://redirect.github.com/gunb0s ))
- sapenlei ([@​sapenlei](https://redirect.github.com/sapenlei ))
###
[`v10.4.8`](https://redirect.github.com/nestjs/nest/releases/tag/v10.4.8 )
[Compare
Source](https://redirect.github.com/nestjs/nest/compare/v10.4.7...v10.4.8 )
##### v10.4.8 (2024-11-15)
##### Bug fixes
- `microservices`
- [#​14059](https://redirect.github.com/nestjs/nest/pull/14059 )
fix(microservices): include discarded rmq client options
([@​v-sum](https://redirect.github.com/v-sum ))
- [#​14132](https://redirect.github.com/nestjs/nest/pull/14132 )
fix(microservices): no messages emitted with mqtt when qos set
([@​kamilmysliwiec](https://redirect.github.com/kamilmysliwiec ))
- `core`
- [#​14133](https://redirect.github.com/nestjs/nest/pull/14133 )
fix(core): flaky durable provider, remove instance on error
([@​kamilmysliwiec](https://redirect.github.com/kamilmysliwiec ))
##### Enhancements
- `core`
- [#​14143](https://redirect.github.com/nestjs/nest/pull/14143 )
feat(core): expose listening stream from http adapter host
([@​kamilmysliwiec](https://redirect.github.com/kamilmysliwiec ))
- [#​14139](https://redirect.github.com/nestjs/nest/pull/14139 )
chore(core): defer application shutdown until init finishes
([@​mksony](https://redirect.github.com/mksony ))
##### Committers: 3
- Kamil Mysliwiec
([@​kamilmysliwiec](https://redirect.github.com/kamilmysliwiec ))
- Max ([@​mksony](https://redirect.github.com/mksony ))
- Vasile Sumanschi ([@​v-sum](https://redirect.github.com/v-sum ))
###
[`v10.4.7`](https://redirect.github.com/nestjs/nest/compare/v10.4.6...v10.4.7 )
[Compare
Source](https://redirect.github.com/nestjs/nest/compare/v10.4.6...v10.4.7 )
</details>
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Enabled.
♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about these
updates again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/ ).
View the [repository job
log](https://developer.mend.io/github/open-feature/js-sdk ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xMjUuMSIsInVwZGF0ZWRJblZlciI6IjM5LjEyNS4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-01-30 21:42:43 +00:00
renovate[bot]
006698f7dd
chore(deps): update dependency @types/node to v20.17.16 ( #1111 )
...
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[@types/node](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node )
([source](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ))
| [`20.17.1` ->
`20.17.16`](https://renovatebot.com/diffs/npm/@types%2fnode/20.17.1/20.17.16 )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Enabled.
♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/ ).
View the [repository job
log](https://developer.mend.io/github/open-feature/js-sdk ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS41OC4xIiwidXBkYXRlZEluVmVyIjoiMzkuMTI1LjEiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbXX0=-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-01-30 21:42:33 +00:00
renovate[bot]
59ef7a3bb1
chore(deps): update dependency esbuild to v0.24.2 ( #1123 )
...
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [esbuild](https://redirect.github.com/evanw/esbuild ) | [`0.24.0` ->
`0.24.2`](https://renovatebot.com/diffs/npm/esbuild/0.24.0/0.24.2 ) |
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Release Notes
<details>
<summary>evanw/esbuild (esbuild)</summary>
###
[`v0.24.2`](https://redirect.github.com/evanw/esbuild/blob/HEAD/CHANGELOG.md#0242 )
[Compare
Source](https://redirect.github.com/evanw/esbuild/compare/v0.24.1...v0.24.2 )
- Fix regression with `--define` and `import.meta`
([#​4010](https://redirect.github.com/evanw/esbuild/issues/4010 ),
[#​4012](https://redirect.github.com/evanw/esbuild/issues/4012 ),
[#​4013](https://redirect.github.com/evanw/esbuild/pull/4013 ))
The previous change in version 0.24.1 to use a more expression-like
parser for `define` values to allow quoted property names introduced a
regression that removed the ability to use `--define:import.meta=...`.
Even though `import` is normally a keyword that can't be used as an
identifier, ES modules special-case the `import.meta` expression to
behave like an identifier anyway. This change fixes the regression.
This fix was contributed by
[@​sapphi-red](https://redirect.github.com/sapphi-red ).
###
[`v0.24.1`](https://redirect.github.com/evanw/esbuild/blob/HEAD/CHANGELOG.md#0241 )
[Compare
Source](https://redirect.github.com/evanw/esbuild/compare/v0.24.0...v0.24.1 )
- Allow `es2024` as a target in `tsconfig.json`
([#​4004](https://redirect.github.com/evanw/esbuild/issues/4004 ))
TypeScript recently [added
`es2024`](https://devblogs.microsoft.com/typescript/announcing-typescript-5-7/#support-for---target-es2024-and---lib-es2024 )
as a compilation target, so esbuild now supports this in the `target`
field of `tsconfig.json` files, such as in the following configuration
file:
```json
{
"compilerOptions": {
"target": "ES2024"
}
}
```
As a reminder, the only thing that esbuild uses this field for is
determining whether or not to use legacy TypeScript behavior for class
fields. You can read more in [the
documentation](https://esbuild.github.io/content-types/#tsconfig-json ).
This fix was contributed by
[@​billyjanitsch](https://redirect.github.com/billyjanitsch ).
- Allow automatic semicolon insertion after `get`/`set`
This change fixes a grammar bug in the parser that incorrectly treated
the following code as a syntax error:
```ts
class Foo {
get
*x() {}
set
*y() {}
}
```
The above code will be considered valid starting with this release. This
change to esbuild follows a [similar change to
TypeScript](https://redirect.github.com/microsoft/TypeScript/pull/60225 )
which will allow this syntax starting with TypeScript 5.7.
- Allow quoted property names in `--define` and `--pure`
([#​4008](https://redirect.github.com/evanw/esbuild/issues/4008 ))
The `define` and `pure` API options now accept identifier expressions
containing quoted property names. Previously all identifiers in the
identifier expression had to be bare identifiers. This change now makes
`--define` and `--pure` consistent with `--global-name`, which already
supported quoted property names. For example, the following is now
possible:
```js
// The following code now transforms to "return true;\n"
console.log(esbuild.transformSync(
`return process.env['SOME-TEST-VAR']`,
{ define: { 'process.env["SOME-TEST-VAR"]': 'true' } },
))
```
Note that if you're passing values like this on the command line using
esbuild's `--define` flag, then you'll need to know how to escape quote
characters for your shell. You may find esbuild's JavaScript API more
ergonomic and portable than writing shell code.
- Minify empty `try`/`catch`/`finally` blocks
([#​4003](https://redirect.github.com/evanw/esbuild/issues/4003 ))
With this release, esbuild will now attempt to minify empty `try`
blocks:
```js
// Original code
try {} catch { foo() } finally { bar() }
// Old output (with --minify)
try{}catch{foo()}finally{bar()}
// New output (with --minify)
bar();
```
This can sometimes expose additional minification opportunities.
- Include `entryPoint` metadata for the `copy` loader
([#​3985](https://redirect.github.com/evanw/esbuild/issues/3985 ))
Almost all entry points already include a `entryPoint` field in the
`outputs` map in esbuild's build metadata. However, this wasn't the case
for the `copy` loader as that loader is a special-case that doesn't
behave like other loaders. This release adds the `entryPoint` field in
this case.
- Source mappings may now contain `null` entries
([#​3310](https://redirect.github.com/evanw/esbuild/issues/3310 ),
[#​3878](https://redirect.github.com/evanw/esbuild/issues/3878 ))
With this change, sources that result in an empty source map may now
emit a `null` source mapping (i.e. one with a generated position but
without a source index or original position). This change improves
source map accuracy by fixing a problem where minified code from a
source without any source mappings could potentially still be associated
with a mapping from another source file earlier in the generated output
on the same minified line. It manifests as nonsensical files in source
mapped stack traces. Now the `null` mapping "resets" the source map so
that any lookups into the minified code without any mappings resolves to
`null` (which appears as the output file in stack traces) instead of the
incorrect source file.
This change shouldn't affect anything in most situations. I'm only
mentioning it in the release notes in case it introduces a bug with
source mapping. It's part of a work-in-progress future feature that will
let you omit certain unimportant files from the generated source map to
reduce source map size.
- Avoid using the parent directory name for determinism
([#​3998](https://redirect.github.com/evanw/esbuild/issues/3998 ))
To make generated code more readable, esbuild includes the name of the
source file when generating certain variable names within the file.
Specifically bundling a CommonJS file generates a variable to store the
lazily-evaluated module initializer. However, if a file is named
`index.js` (or with a different extension), esbuild will use the name of
the parent directory instead for a better name (since many packages have
files all named `index.js` but have unique directory names).
This is problematic when the bundle entry point is named `index.js` and
the parent directory name is non-deterministic (e.g. a temporary
directory created by a build script). To avoid non-determinism in
esbuild's output, esbuild will now use `index` instead of the parent
directory in this case. Specifically this will happen if the parent
directory is equal to esbuild's `outbase` API option, which defaults to
the [lowest common
ancestor](https://en.wikipedia.org/wiki/Lowest_common_ancestor ) of all
user-specified entry point paths.
- Experimental support for esbuild on NetBSD
([#​3974](https://redirect.github.com/evanw/esbuild/pull/3974 ))
With this release, esbuild now has a published binary executable for
[NetBSD](https://www.netbsd.org/ ) in the
[`@esbuild/netbsd-arm64`](https://www.npmjs.com/package/@​esbuild/netbsd-arm64 )
npm package, and esbuild's installer has been modified to attempt to use
it when on NetBSD. Hopefully this makes installing esbuild via npm work
on NetBSD. This change was contributed by
[@​bsiegert](https://redirect.github.com/bsiegert ).
⚠️ Note: NetBSD is not one of [Node's supported
platforms](https://nodejs.org/api/process.html#process_process_platform ),
so installing esbuild may or may not work on NetBSD depending on how
Node has been patched. This is not a problem with esbuild. ⚠️
</details>
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.
♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/ ).
View the [repository job
log](https://developer.mend.io/github/open-feature/js-sdk ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xMjUuMSIsInVwZGF0ZWRJblZlciI6IjM5LjEyNS4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-01-30 16:40:11 -05:00
renovate[bot]
952c43f3b8
chore(deps): update angular-eslint monorepo to v18.4.3 ( #1098 )
...
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[@angular-eslint/builder](https://redirect.github.com/angular-eslint/angular-eslint )
([source](https://redirect.github.com/angular-eslint/angular-eslint/tree/HEAD/packages/builder ))
| [`18.4.0` ->
`18.4.3`](https://renovatebot.com/diffs/npm/@angular-eslint%2fbuilder/18.4.0/18.4.3 )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
|
[@angular-eslint/eslint-plugin](https://redirect.github.com/angular-eslint/angular-eslint )
([source](https://redirect.github.com/angular-eslint/angular-eslint/tree/HEAD/packages/eslint-plugin ))
| [`18.4.0` ->
`18.4.3`](https://renovatebot.com/diffs/npm/@angular-eslint%2feslint-plugin/18.4.0/18.4.3 )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
|
[@angular-eslint/eslint-plugin-template](https://redirect.github.com/angular-eslint/angular-eslint )
([source](https://redirect.github.com/angular-eslint/angular-eslint/tree/HEAD/packages/eslint-plugin-template ))
| [`18.4.0` ->
`18.4.3`](https://renovatebot.com/diffs/npm/@angular-eslint%2feslint-plugin-template/18.4.0/18.4.3 )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
|
[@angular-eslint/schematics](https://redirect.github.com/angular-eslint/angular-eslint )
([source](https://redirect.github.com/angular-eslint/angular-eslint/tree/HEAD/packages/schematics ))
| [`18.4.0` ->
`18.4.3`](https://renovatebot.com/diffs/npm/@angular-eslint%2fschematics/18.4.0/18.4.3 )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
|
[@angular-eslint/template-parser](https://redirect.github.com/angular-eslint/angular-eslint )
([source](https://redirect.github.com/angular-eslint/angular-eslint/tree/HEAD/packages/template-parser ))
| [`18.4.0` ->
`18.4.3`](https://renovatebot.com/diffs/npm/@angular-eslint%2ftemplate-parser/18.4.0/18.4.3 )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Release Notes
<details>
<summary>angular-eslint/angular-eslint
(@​angular-eslint/builder)</summary>
###
[`v18.4.3`](https://redirect.github.com/angular-eslint/angular-eslint/blob/HEAD/packages/builder/CHANGELOG.md#1843-2024-11-29 )
[Compare
Source](https://redirect.github.com/angular-eslint/angular-eslint/compare/v18.4.2...v18.4.3 )
##### 🩹 Fixes
- yarn pnp issues
([#​2143](https://redirect.github.com/angular-eslint/angular-eslint/pull/2143 ))
##### ❤️ Thank You
- James Henry
[@​JamesHenry](https://redirect.github.com/JamesHenry )
###
[`v18.4.2`](https://redirect.github.com/angular-eslint/angular-eslint/blob/HEAD/packages/builder/CHANGELOG.md#1842-2024-11-23 )
[Compare
Source](https://redirect.github.com/angular-eslint/angular-eslint/compare/v18.4.1...v18.4.2 )
This was a version bump only for builder to align it with other
projects, there were no code changes.
###
[`v18.4.1`](https://redirect.github.com/angular-eslint/angular-eslint/blob/HEAD/packages/builder/CHANGELOG.md#1841-2024-11-18 )
[Compare
Source](https://redirect.github.com/angular-eslint/angular-eslint/compare/v18.4.0...v18.4.1 )
This was a version bump only for builder to align it with other
projects, there were no code changes.
</details>
<details>
<summary>angular-eslint/angular-eslint
(@​angular-eslint/eslint-plugin)</summary>
###
[`v18.4.3`](https://redirect.github.com/angular-eslint/angular-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#1843-2024-11-29 )
[Compare
Source](https://redirect.github.com/angular-eslint/angular-eslint/compare/v18.4.2...v18.4.3 )
This was a version bump only for eslint-plugin to align it with other
projects, there were no code changes.
###
[`v18.4.2`](https://redirect.github.com/angular-eslint/angular-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#1842-2024-11-23 )
[Compare
Source](https://redirect.github.com/angular-eslint/angular-eslint/compare/v18.4.1...v18.4.2 )
##### 🩹 Fixes
- **eslint-plugin:** fix placement of lifecycle interface for subclasses
([#​1965](https://redirect.github.com/angular-eslint/angular-eslint/pull/1965 ))
- **eslint-plugin:** handle `output()` and `input()` functions in
various rules
([#​2098](https://redirect.github.com/angular-eslint/angular-eslint/pull/2098 ))
##### ❤️ Thank You
- Aleksandr Martirosyan
- Dave [@​reduckted](https://redirect.github.com/reduckted )
###
[`v18.4.1`](https://redirect.github.com/angular-eslint/angular-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#1841-2024-11-18 )
[Compare
Source](https://redirect.github.com/angular-eslint/angular-eslint/compare/v18.4.0...v18.4.1 )
This was a version bump only for eslint-plugin to align it with other
projects, there were no code changes.
</details>
<details>
<summary>angular-eslint/angular-eslint
(@​angular-eslint/eslint-plugin-template)</summary>
###
[`v18.4.3`](https://redirect.github.com/angular-eslint/angular-eslint/blob/HEAD/packages/eslint-plugin-template/CHANGELOG.md#1843-2024-11-29 )
[Compare
Source](https://redirect.github.com/angular-eslint/angular-eslint/compare/v18.4.2...v18.4.3 )
This was a version bump only for eslint-plugin-template to align it with
other projects, there were no code changes.
###
[`v18.4.2`](https://redirect.github.com/angular-eslint/angular-eslint/blob/HEAD/packages/eslint-plugin-template/CHANGELOG.md#1842-2024-11-23 )
[Compare
Source](https://redirect.github.com/angular-eslint/angular-eslint/compare/v18.4.1...v18.4.2 )
This was a version bump only for eslint-plugin-template to align it with
other projects, there were no code changes.
###
[`v18.4.1`](https://redirect.github.com/angular-eslint/angular-eslint/blob/HEAD/packages/eslint-plugin-template/CHANGELOG.md#1841-2024-11-18 )
[Compare
Source](https://redirect.github.com/angular-eslint/angular-eslint/compare/v18.4.0...v18.4.1 )
This was a version bump only for eslint-plugin-template to align it with
other projects, there were no code changes.
</details>
<details>
<summary>angular-eslint/angular-eslint
(@​angular-eslint/schematics)</summary>
###
[`v18.4.3`](https://redirect.github.com/angular-eslint/angular-eslint/blob/HEAD/packages/schematics/CHANGELOG.md#1843-2024-11-29 )
[Compare
Source](https://redirect.github.com/angular-eslint/angular-eslint/compare/v18.4.2...v18.4.3 )
##### 🩹 Fixes
- update typescript-eslint packages to v8.16.0
([#​2135](https://redirect.github.com/angular-eslint/angular-eslint/pull/2135 ))
- yarn pnp issues
([#​2143](https://redirect.github.com/angular-eslint/angular-eslint/pull/2143 ))
##### ❤️ Thank You
- James Henry
[@​JamesHenry](https://redirect.github.com/JamesHenry )
###
[`v18.4.2`](https://redirect.github.com/angular-eslint/angular-eslint/blob/HEAD/packages/schematics/CHANGELOG.md#1842-2024-11-23 )
[Compare
Source](https://redirect.github.com/angular-eslint/angular-eslint/compare/v18.4.1...v18.4.2 )
This was a version bump only for schematics to align it with other
projects, there were no code changes.
###
[`v18.4.1`](https://redirect.github.com/angular-eslint/angular-eslint/blob/HEAD/packages/schematics/CHANGELOG.md#1841-2024-11-18 )
[Compare
Source](https://redirect.github.com/angular-eslint/angular-eslint/compare/v18.4.0...v18.4.1 )
##### 🩹 Fixes
- update dependency ignore to v6
([#​2047](https://redirect.github.com/angular-eslint/angular-eslint/pull/2047 ))
</details>
<details>
<summary>angular-eslint/angular-eslint
(@​angular-eslint/template-parser)</summary>
###
[`v18.4.3`](https://redirect.github.com/angular-eslint/angular-eslint/blob/HEAD/packages/template-parser/CHANGELOG.md#1843-2024-11-29 )
[Compare
Source](https://redirect.github.com/angular-eslint/angular-eslint/compare/v18.4.2...v18.4.3 )
This was a version bump only for template-parser to align it with other
projects, there were no code changes.
###
[`v18.4.2`](https://redirect.github.com/angular-eslint/angular-eslint/blob/HEAD/packages/template-parser/CHANGELOG.md#1842-2024-11-23 )
[Compare
Source](https://redirect.github.com/angular-eslint/angular-eslint/compare/v18.4.1...v18.4.2 )
This was a version bump only for template-parser to align it with other
projects, there were no code changes.
###
[`v18.4.1`](https://redirect.github.com/angular-eslint/angular-eslint/blob/HEAD/packages/template-parser/CHANGELOG.md#1841-2024-11-18 )
[Compare
Source](https://redirect.github.com/angular-eslint/angular-eslint/compare/v18.4.0...v18.4.1 )
This was a version bump only for template-parser to align it with other
projects, there were no code changes.
</details>
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Enabled.
♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about these
updates again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/ ).
View the [repository job
log](https://developer.mend.io/github/open-feature/js-sdk ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS40Mi40IiwidXBkYXRlZEluVmVyIjoiMzkuNDIuNCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-01-28 19:41:25 +00:00
renovate[bot]
b99fc01a6d
chore(deps): update dependency @types/react to v18.3.18 ( #1112 )
...
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[@types/react](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react )
([source](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react ))
| [`18.3.12` ->
`18.3.18`](https://renovatebot.com/diffs/npm/@types%2freact/18.3.12/18.3.18 )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Enabled.
♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/ ).
View the [repository job
log](https://developer.mend.io/github/open-feature/js-sdk ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS41OC4xIiwidXBkYXRlZEluVmVyIjoiMzkuODAuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-01-28 19:41:08 +00:00
Will C.
4a6b860544
feat: export useOpenFeatureClientStatus hook ( #1082 )
...
<!-- Please use this template for your pull request. -->
<!-- Please use the sections that you need and delete other sections -->
## This PR
<!-- add the description of the PR here -->
exposes the internal open feature client status hook so developers can
act on non-ready resolved states
### Related Issues
<!-- add here the GitHub issue that this PR resolves if applicable -->
Fixes #1036
### Notes
<!-- any additional notes for this PR -->
### Follow-up Tasks
<!-- anything that is related to this PR but not done here should be
noted under this section -->
<!-- if there is a need for a new issue, please link it here -->
### How to test
<!-- if applicable, add testing instructions under this section -->
---------
Signed-off-by: William Chou <iam@willchou.dev>
Signed-off-by: Will Chou <w.chou06@gmail.com>
Co-authored-by: Lukas Reining <lukas.reining@codecentric.de>
2025-01-28 19:40:48 +00:00
Todd Baert
9e338f2ca3
chore: remove release-as from nest sdk
...
Signed-off-by: Todd Baert <todd.baert@dynatrace.com>
2025-01-07 14:18:46 -05:00
Michael Beemer
0587d8a5da
ci: add node 22 to test matrix ( #1115 )
...
## This PR
- adds node 22 to the test matrix
### Notes
Node 22 is the current active LTS version. We still should target Node
18 but test Node 22.
Signed-off-by: Michael Beemer <beeme1mr@users.noreply.github.com>
2025-01-03 08:56:42 -05:00
OpenFeature Bot
52c8de630b
chore(main): release react-sdk 0.4.10 ( #1105 )
...
🤖 I have created a release *beep* *boop*
---
##
[0.4.10](https://github.com/open-feature/js-sdk/compare/react-sdk-v0.4.9...react-sdk-v0.4.10 )
(2024-12-18)
### 🔄 Refactoring
* export public option types
([#1101 ](https://github.com/open-feature/js-sdk/issues/1101 ))
([16321c3
](16321c31f2
))
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
Signed-off-by: OpenFeature Bot <109696520+openfeaturebot@users.noreply.github.com>
Co-authored-by: Michael Beemer <beeme1mr@users.noreply.github.com>
2024-12-18 13:58:49 -05:00
OpenFeature Bot
edab97019a
chore(main): release server-sdk 1.17.0 ( #1104 )
...
🤖 I have created a release *beep* *boop*
---
##
[1.17.0](https://github.com/open-feature/js-sdk/compare/server-sdk-v1.16.2...server-sdk-v1.17.0 )
(2024-12-18)
### ⚠ BREAKING CHANGES
The signature of the `finally` hook stage has been changed. The
signature now includes the `evaluation details`, as per the [OpenFeature
specification](https://openfeature.dev/specification/sections/hooks#requirement-438 ).
Note that since hooks are still `experimental,` this does not constitute
a change requiring a new major version. To migrate, update any hook that
implements the `finally` stage to accept `evaluation details` as the
second argument.
* add evaluation details to finally hook
([#1087 ](https://github.com/open-feature/js-sdk/issues/1087 ))
([2135254
](2135254c4b
))
### ✨ New Features
* add evaluation details to finally hook
([#1087 ](https://github.com/open-feature/js-sdk/issues/1087 ))
([2135254
](2135254c4b
))
### 📚 Documentation
* fix comment in README for Hook’s after method
([#1103 ](https://github.com/open-feature/js-sdk/issues/1103 ))
([e335615
](e3356157d5
))
### 🔄 Refactoring
* improve track interface for providers
([#1100 ](https://github.com/open-feature/js-sdk/issues/1100 ))
([5e5b160
](5e5b160221
))
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
---------
Signed-off-by: OpenFeature Bot <109696520+openfeaturebot@users.noreply.github.com>
Signed-off-by: Michael Beemer <beeme1mr@users.noreply.github.com>
Co-authored-by: Michael Beemer <beeme1mr@users.noreply.github.com>
2024-12-18 13:53:23 -05:00
OpenFeature Bot
79de7cabd3
chore(main): release web-sdk 1.4.0 ( #1106 )
...
🤖 I have created a release *beep* *boop*
---
##
[1.4.0](https://github.com/open-feature/js-sdk/compare/web-sdk-v1.3.2...web-sdk-v1.4.0 )
(2024-12-18)
### ⚠ BREAKING CHANGES
The signature of the `finally` hook stage has been changed. The
signature now includes the `evaluation details`, as per the [OpenFeature
specification](https://openfeature.dev/specification/sections/hooks#requirement-438 ).
Note that since hooks are still `experimental,` this does not constitute
a change requiring a new major version. To migrate, update any hook that
implements the `finally` stage to accept `evaluation details` as the
second argument.
* add evaluation details to finally hook
([#1087 ](https://github.com/open-feature/js-sdk/issues/1087 ))
([2135254
](2135254c4b
))
### ✨ New Features
* add evaluation details to finally hook
([#1087 ](https://github.com/open-feature/js-sdk/issues/1087 ))
([2135254
](2135254c4b
))
### 📚 Documentation
* fix comment in README for Hook’s after method
([#1102 ](https://github.com/open-feature/js-sdk/issues/1102 ))
([ba8d1ae
](ba8d1aeec8
))
### 🔄 Refactoring
* improve track interface for providers
([#1100 ](https://github.com/open-feature/js-sdk/issues/1100 ))
([5e5b160
](5e5b160221
))
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
---------
Signed-off-by: OpenFeature Bot <109696520+openfeaturebot@users.noreply.github.com>
Signed-off-by: Michael Beemer <beeme1mr@users.noreply.github.com>
Co-authored-by: Michael Beemer <beeme1mr@users.noreply.github.com>
2024-12-18 13:48:25 -05:00
OpenFeature Bot
bd26d0a234
chore(main): release core 1.6.0 ( #1107 )
...
🤖 I have created a release *beep* *boop*
---
##
[1.6.0](https://github.com/open-feature/js-sdk/compare/core-v1.5.0...core-v1.6.0 )
(2024-12-12)
### ⚠ BREAKING CHANGES
The signature of the `finally` hook stage has been changed. The
signature now includes the `evaluation details`, as per the [OpenFeature
specification](https://openfeature.dev/specification/sections/hooks#requirement-438 ).
Note that since hooks are still `experimental,` this does not constitute
a change requiring a new major version. To migrate, update any hook that
implements the `finally` stage to accept `evaluation details` as the
second argument.
* add evaluation details to finally hook
([#1087 ](https://github.com/open-feature/js-sdk/issues/1087 ))
([2135254
](2135254c4b
))
### ✨ New Features
* add evaluation details to finally hook
([#1087 ](https://github.com/open-feature/js-sdk/issues/1087 ))
([2135254
](2135254c4b
))
### 🔄 Refactoring
* improve track interface for providers
([#1100 ](https://github.com/open-feature/js-sdk/issues/1100 ))
([5e5b160
](5e5b160221
))
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
---------
Signed-off-by: OpenFeature Bot <109696520+openfeaturebot@users.noreply.github.com>
Signed-off-by: Michael Beemer <beeme1mr@users.noreply.github.com>
Co-authored-by: Michael Beemer <beeme1mr@users.noreply.github.com>
2024-12-18 18:40:39 +00:00
renovate[bot]
38d9a3bee3
chore(deps): update typescript-eslint monorepo to v7.18.0 ( #1065 )
...
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin )
([source](https://redirect.github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin ))
| [`7.11.0` ->
`7.18.0`](https://renovatebot.com/diffs/npm/@typescript-eslint%2feslint-plugin/7.11.0/7.18.0 )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
|
[@typescript-eslint/parser](https://typescript-eslint.io/packages/parser )
([source](https://redirect.github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser ))
| [`7.11.0` ->
`7.18.0`](https://renovatebot.com/diffs/npm/@typescript-eslint%2fparser/7.11.0/7.18.0 )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Release Notes
<details>
<summary>typescript-eslint/typescript-eslint
(@​typescript-eslint/eslint-plugin)</summary>
###
[`v7.18.0`](https://redirect.github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#7180-2024-07-29 )
[Compare
Source](https://redirect.github.com/typescript-eslint/typescript-eslint/compare/v7.17.0...v7.18.0 )
##### 🩹 Fixes
- **eslint-plugin:** \[no-unnecessary-type-assertion] prevent runtime
error when asserting a variable declared in default TS lib
- **eslint-plugin:** \[unbound-method] report on destructuring in
function parameters
- **eslint-plugin:** \[no-duplicate-type-constituents] shouldn't report
on error types
- **eslint-plugin:** \[strict-boolean-expressions] support branded
booleans
##### ❤️ Thank You
- auvred
- Oliver Salzburg
- Vinccool96
- Yukihiro Hasegawa
You can read about our [versioning
strategy](https://main--typescript-eslint.netlify.app/users/versioning )
and
[releases](https://main--typescript-eslint.netlify.app/users/releases )
on our website.
###
[`v7.17.0`](https://redirect.github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#7170-2024-07-22 )
[Compare
Source](https://redirect.github.com/typescript-eslint/typescript-eslint/compare/v7.16.1...v7.17.0 )
##### 🚀 Features
- **eslint-plugin:** backport no-unsafe-function type,
no-wrapper-object-types from v8 to v7
- **eslint-plugin:** \[return-await] add option to report in
error-handling scenarios only, and deprecate "never"
##### 🩹 Fixes
- **eslint-plugin:** \[no-floating-promises] check top-level type
assertions (and more)
- **eslint-plugin:** \[strict-boolean-expressions] consider assertion
function argument a boolean context
- **eslint-plugin:** \[no-unnecessary-condition] false positive on
optional private field
##### ❤️ Thank You
- Armano
- Josh Goldberg ✨
- Kirk Waiblinger
- StyleShit
You can read about our [versioning
strategy](https://main--typescript-eslint.netlify.app/users/versioning )
and
[releases](https://main--typescript-eslint.netlify.app/users/releases )
on our website.
###
[`v7.16.1`](https://redirect.github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#7161-2024-07-15 )
[Compare
Source](https://redirect.github.com/typescript-eslint/typescript-eslint/compare/v7.16.0...v7.16.1 )
##### 🩹 Fixes
- **eslint-plugin:** \[no-unnecessary-type-parameters] descend into all
parts of mapped types in no-unnecessary-type-parameters
##### ❤️ Thank You
- Dan Vanderkam
You can read about our [versioning
strategy](https://main--typescript-eslint.netlify.app/users/versioning )
and
[releases](https://main--typescript-eslint.netlify.app/users/releases )
on our website.
###
[`v7.16.0`](https://redirect.github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#7160-2024-07-08 )
[Compare
Source](https://redirect.github.com/typescript-eslint/typescript-eslint/compare/v7.15.0...v7.16.0 )
##### 🚀 Features
- **rule-tester:** stricter rule test validations
- **eslint-plugin:** \[no-unnecessary-parameter-property-assignment] add
new rule
- **eslint-plugin:** add support for nested namespaces to
unsafe-member-access
- **eslint-plugin:** \[no-floating-promises] add checkThenables option
##### 🩹 Fixes
- **deps:** update dependency
[@​eslint-community/regexpp](https://redirect.github.com/eslint-community/regexpp )
to v4.11.0
- **eslint-plugin:** \[no-floating-promises] add `suggestions` to tests
from
[#​9263](https://redirect.github.com/typescript-eslint/typescript-eslint/issues/9263 )
`checkThenables`
- **website:** react key error on internal pages of website
- **eslint-plugin:** \[restrict-template-expressions] don't report
tuples if `allowArray` option is enabled
##### ❤️ Thank You
- Abraham Guo
- auvred
- Josh Goldberg ✨
- Juan Sanchez
- Vinccool96
- YeonJuan
- Yukihiro Hasegawa
You can read about our [versioning
strategy](https://main--typescript-eslint.netlify.app/users/versioning )
and
[releases](https://main--typescript-eslint.netlify.app/users/releases )
on our website.
###
[`v7.15.0`](https://redirect.github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#7150-2024-07-01 )
[Compare
Source](https://redirect.github.com/typescript-eslint/typescript-eslint/compare/v7.14.1...v7.15.0 )
##### 🚀 Features
- **eslint-plugin:** \[array-type] detect `Readonly<string[]>` case
- **eslint-plugin:** back-port new rules around empty object types from
v8
##### 🩹 Fixes
- disable `EXPERIMENTAL_useProjectService` in `disabled-type-checked`
shared config
- **eslint-plugin:** \[no-unsafe-return] differentiate a types-error any
from a true any
- **eslint-plugin:** \[no-unsafe-call] differentiate a types-error any
from a true any
##### ❤️ Thank You
- auvred
- Kim Sang Du
- rgehbt
- Vinccool96
You can read about our [versioning
strategy](https://main--typescript-eslint.netlify.app/users/versioning )
and
[releases](https://main--typescript-eslint.netlify.app/users/releases )
on our website.
###
[`v7.14.1`](https://redirect.github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#7141-2024-06-24 )
[Compare
Source](https://redirect.github.com/typescript-eslint/typescript-eslint/compare/v7.14.0...v7.14.1 )
##### 🩹 Fixes
- **eslint-plugin:** \[prefer-nullish-coalescing] treat enums and
literals as their underlying primitive types
- **eslint-plugin:** \[prefer-nullish-coalescing] ensure ternary fix
does not remove parens
##### ❤️ Thank You
- Jake Bailey
You can read about our [versioning
strategy](https://main--typescript-eslint.netlify.app/users/versioning )
and
[releases](https://main--typescript-eslint.netlify.app/users/releases )
on our website.
###
[`v7.14.0`](https://redirect.github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#7140-2024-06-24 )
[Compare
Source](https://redirect.github.com/typescript-eslint/typescript-eslint/compare/v7.13.1...v7.14.0 )
##### 🚀 Features
- support TypeScript 5.5
##### 🩹 Fixes
- **eslint-plugin:** \[no-extraneous-class] handle abstract members
- **eslint-plugin:** \[prefer-nullish-coalescing] handle intersected
primitive types
- **eslint-plugin:** \[no-invalid-this] support AccessorProperty
##### ❤️ Thank You
- Brad Zacher
- cm-ayf
- Jake Bailey
- James Zhan
- Joshua Chen
- yoshi2no
You can read about our [versioning
strategy](https://main--typescript-eslint.netlify.app/users/versioning )
and
[releases](https://main--typescript-eslint.netlify.app/users/releases )
on our website.
###
[`v7.13.1`](https://redirect.github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#7131-2024-06-17 )
[Compare
Source](https://redirect.github.com/typescript-eslint/typescript-eslint/compare/v7.13.0...v7.13.1 )
##### 🩹 Fixes
- **eslint-plugin:** \[prefer-readonly] refine report locations
- **eslint-plugin:** \[return-await] support explicit resource
management
- **eslint-plugin:** \[no-unsafe-member-access] differentiate a
types-error any from a true any
##### ❤️ Thank You
- Kirk Waiblinger
- Yukihiro Hasegawa
You can read about our [versioning
strategy](https://main--typescript-eslint.netlify.app/users/versioning )
and
[releases](https://main--typescript-eslint.netlify.app/users/releases )
on our website.
###
[`v7.13.0`](https://redirect.github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#7130-2024-06-10 )
[Compare
Source](https://redirect.github.com/typescript-eslint/typescript-eslint/compare/v7.12.0...v7.13.0 )
##### 🚀 Features
- **typescript-estree:** require `import = require()` argument to be a
string literal
- **typescript-estree:** forbid `.body`, `.async`, `.generator` on
`declare function`
- **eslint-plugin:** \[no-dynamic-delete] allow all string literals as
index
##### 🩹 Fixes
- **ast-spec:** function-call-like callee should be Expression not
LeftHandSideExpression
- **scope-manager:** handle index signature in class
- **eslint-plugin:** \[init-declarations] refine report locations
- **eslint-plugin:** \[no-base-to-string] make error message more
nuanced
- **eslint-plugin:** \[no-unsafe-assignment] be more specific about
error types
- **eslint-plugin:** \[no-magic-numbers] fix implementation of the
`ignore` option
##### ❤️ Thank You
- Fotis Papadogeorgopoulos
- Joshua Chen
- Kirk Waiblinger
- Tobiloba Adedeji
- Vinccool96
- YeonJuan
You can read about our [versioning
strategy](https://main--typescript-eslint.netlify.app/users/versioning )
and
[releases](https://main--typescript-eslint.netlify.app/users/releases )
on our website.
###
[`v7.12.0`](https://redirect.github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#7120-2024-06-03 )
[Compare
Source](https://redirect.github.com/typescript-eslint/typescript-eslint/compare/v7.11.0...v7.12.0 )
##### 🚀 Features
- **eslint-plugin:** \[no-useless-template-literals] rename to
`no-useless-template-expression` (deprecate
`no-useless-template-literals`)
- **rule-tester:** check for parsing errors in suggestion fixes
- **rule-tester:** port `checkDuplicateTestCases` from ESLint
- **eslint-plugin:** \[no-floating-promises] add option
'allowForKnownSafePromises'
##### 🩹 Fixes
- no-useless-template-expression -> no-unnecessary-template-expression
- **eslint-plugin:** \[no-unnecessary-type-assertion] combine template
literal check with `const` variable check
- **eslint-plugin:** \[dot-notation] fix false positive when accessing
private/protected property with optional chaining
- **eslint-plugin:** \[explicit-member-accessibility] refine report
locations
- **eslint-plugin:** \[no-unnecessary-type-assertion] declares are
always defined, so always check `declare`s
- **eslint-plugin:** \[prefer-literal-enum-member] allow using member it
self on allowBitwiseExpressions
- **eslint-plugin:** \[return-await] clean up in-try-catch detection and
make autofixes safe
- **eslint-plugin:** \[member-ordering] also TSMethodSignature can be
get/set
##### ❤️ Thank You
- Abraham Guo
- Han Yeong-woo
- Joshua Chen
- Kim Sang Du
- Kirk Waiblinger
- YeonJuan
You can read about our [versioning
strategy](https://main--typescript-eslint.netlify.app/users/versioning )
and
[releases](https://main--typescript-eslint.netlify.app/users/releases )
on our website.
</details>
<details>
<summary>typescript-eslint/typescript-eslint
(@​typescript-eslint/parser)</summary>
###
[`v7.18.0`](https://redirect.github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#7180-2024-07-29 )
[Compare
Source](https://redirect.github.com/typescript-eslint/typescript-eslint/compare/v7.17.0...v7.18.0 )
This was a version bump only for parser to align it with other projects,
there were no code changes.
You can read about our [versioning
strategy](https://main--typescript-eslint.netlify.app/users/versioning )
and
[releases](https://main--typescript-eslint.netlify.app/users/releases )
on our website.
###
[`v7.17.0`](https://redirect.github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#7170-2024-07-22 )
[Compare
Source](https://redirect.github.com/typescript-eslint/typescript-eslint/compare/v7.16.1...v7.17.0 )
This was a version bump only for parser to align it with other projects,
there were no code changes.
You can read about our [versioning
strategy](https://main--typescript-eslint.netlify.app/users/versioning )
and
[releases](https://main--typescript-eslint.netlify.app/users/releases )
on our website.
###
[`v7.16.1`](https://redirect.github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#7161-2024-07-15 )
[Compare
Source](https://redirect.github.com/typescript-eslint/typescript-eslint/compare/v7.16.0...v7.16.1 )
This was a version bump only for parser to align it with other projects,
there were no code changes.
You can read about our [versioning
strategy](https://main--typescript-eslint.netlify.app/users/versioning )
and
[releases](https://main--typescript-eslint.netlify.app/users/releases )
on our website.
###
[`v7.16.0`](https://redirect.github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#7160-2024-07-08 )
[Compare
Source](https://redirect.github.com/typescript-eslint/typescript-eslint/compare/v7.15.0...v7.16.0 )
##### 🩹 Fixes
- **deps:** update dependency
[@​eslint-community/regexpp](https://redirect.github.com/eslint-community/regexpp )
to v4.11.0
- **website:** react key error on internal pages of website
##### ❤️ Thank You
- Abraham Guo
- auvred
- Josh Goldberg ✨
- Juan Sanchez
- Vinccool96
- YeonJuan
- Yukihiro Hasegawa
You can read about our [versioning
strategy](https://main--typescript-eslint.netlify.app/users/versioning )
and
[releases](https://main--typescript-eslint.netlify.app/users/releases )
on our website.
###
[`v7.15.0`](https://redirect.github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#7150-2024-07-01 )
[Compare
Source](https://redirect.github.com/typescript-eslint/typescript-eslint/compare/v7.14.1...v7.15.0 )
This was a version bump only for parser to align it with other projects,
there were no code changes.
You can read about our [versioning
strategy](https://main--typescript-eslint.netlify.app/users/versioning )
and
[releases](https://main--typescript-eslint.netlify.app/users/releases )
on our website.
###
[`v7.14.1`](https://redirect.github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#7141-2024-06-24 )
[Compare
Source](https://redirect.github.com/typescript-eslint/typescript-eslint/compare/v7.14.0...v7.14.1 )
This was a version bump only for parser to align it with other projects,
there were no code changes.
You can read about our [versioning
strategy](https://main--typescript-eslint.netlify.app/users/versioning )
and
[releases](https://main--typescript-eslint.netlify.app/users/releases )
on our website.
###
[`v7.14.0`](https://redirect.github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#7140-2024-06-24 )
[Compare
Source](https://redirect.github.com/typescript-eslint/typescript-eslint/compare/v7.13.1...v7.14.0 )
##### 🚀 Features
- support TypeScript 5.5
##### ❤️ Thank You
- Brad Zacher
- cm-ayf
- Jake Bailey
- James Zhan
- Joshua Chen
- yoshi2no
You can read about our [versioning
strategy](https://main--typescript-eslint.netlify.app/users/versioning )
and
[releases](https://main--typescript-eslint.netlify.app/users/releases )
on our website.
###
[`v7.13.1`](https://redirect.github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#7131-2024-06-17 )
[Compare
Source](https://redirect.github.com/typescript-eslint/typescript-eslint/compare/v7.13.0...v7.13.1 )
This was a version bump only for parser to align it with other projects,
there were no code changes.
You can read about our [versioning
strategy](https://main--typescript-eslint.netlify.app/users/versioning )
and
[releases](https://main--typescript-eslint.netlify.app/users/releases )
on our website.
###
[`v7.13.0`](https://redirect.github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#7130-2024-06-10 )
[Compare
Source](https://redirect.github.com/typescript-eslint/typescript-eslint/compare/v7.12.0...v7.13.0 )
##### 🚀 Features
- **parser, typescript-estree:** export withoutProjectParserOptions
utility
##### ❤️ Thank You
- Fotis Papadogeorgopoulos
- Joshua Chen
- Kirk Waiblinger
- Tobiloba Adedeji
- Vinccool96
- YeonJuan
You can read about our [versioning
strategy](https://main--typescript-eslint.netlify.app/users/versioning )
and
[releases](https://main--typescript-eslint.netlify.app/users/releases )
on our website.
###
[`v7.12.0`](https://redirect.github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#7120-2024-06-03 )
[Compare
Source](https://redirect.github.com/typescript-eslint/typescript-eslint/compare/v7.11.0...v7.12.0 )
##### 🩹 Fixes
- **types:** correct typing ParserOptions
##### ❤️ Thank You
- Abraham Guo
- Han Yeong-woo
- Joshua Chen
- Kim Sang Du
- Kirk Waiblinger
- YeonJuan
You can read about our [versioning
strategy](https://main--typescript-eslint.netlify.app/users/versioning )
and
[releases](https://main--typescript-eslint.netlify.app/users/releases )
on our website.
</details>
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Disabled because a matching PR was automerged
previously.
♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about these
updates again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/ ).
View the [repository job
log](https://developer.mend.io/github/open-feature/js-sdk ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC4xMzMuMSIsInVwZGF0ZWRJblZlciI6IjM4LjEzMy4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-12-12 08:51:55 -05:00
Michael Beemer
2135254c4b
feat: add evaluation details to finally hook ( #1087 )
...
## This PR
- adds evaluation details to the `finally` stage in hooks.
### Notes
This breaks the signature of the `finally` stages based on [this spec
enhancement](https://github.com/open-feature/spec/pull/280 ). It is
**not** considered a breaking change to the SDK because hooks are marked
as experimental in the spec, and the change has no impact on known
hooks.
The noteworthy change to the interface is:
```diff
- finally?(hookContext: Readonly<HookContext<T>>, hookHints?: HookHints): HooksReturn;
+ finally?(hookContext: Readonly<HookContext<T>>, evaluationDetails: EvaluationDetails<T>, hookHints?: HookHints): HooksReturn;
```
### Follow-up Tasks
- Update the JS contribs repo
---------
Signed-off-by: Michael Beemer <beeme1mr@users.noreply.github.com>
2024-12-12 13:49:09 +00:00
Michael Beemer
5e5b160221
refactor: improve track interface for providers ( #1100 )
...
## This PR
- updates the context and trackingEventDetails on the tracking interface
to not be optional since they're always supplied by the SDK.
### Notes
This is a small QoL improvement for provider devs implementing the
tracking interface.
### How to test
The SDK still compiles, and the tests don't need to be modified.
---------
Signed-off-by: Michael Beemer <beeme1mr@users.noreply.github.com>
Signed-off-by: Todd Baert <todd.baert@dynatrace.com>
Co-authored-by: Todd Baert <todd.baert@dynatrace.com>
2024-12-11 20:09:12 +00:00
Christian Llontop
ba8d1aeec8
docs: fix comment in README for Hook’s after method ( #1102 )
...
## This PR
- Fixes incorrect comment in the README for the Hook implementation's
`after` method.
Signed-off-by: Christian Llontop <me@chrisllontop.com>
Co-authored-by: Todd Baert <todd.baert@dynatrace.com>
2024-12-10 14:13:53 -05:00
Michael Beemer
16321c31f2
refactor: export public option types ( #1101 )
...
## This PR
- renames the `shared` folder to `internal` to prevent accident exports
- export public option types
### Notes
This will make it easier for devs who need access to the option types.
---------
Signed-off-by: Michael Beemer <beeme1mr@users.noreply.github.com>
2024-12-10 14:12:17 -05:00
Christian Llontop
e3356157d5
docs: fix comment in README for Hook’s after method ( #1103 )
...
## This PR
- Fixes incorrect comment in the README for the Hook implementation's
`after` method.
Signed-off-by: Christian Llontop <me@chrisllontop.com>
2024-12-10 14:09:46 -05:00
renovate[bot]
d09f5467ea
chore(deps): update dependency @types/uuid to v10 ( #1061 )
...
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[@types/uuid](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/uuid )
([source](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/uuid ))
| [`^9.0.8` ->
`^10.0.0`](https://renovatebot.com/diffs/npm/@types%2fuuid/9.0.8/10.0.0 )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Enabled.
♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/ ).
View the [repository job
log](https://developer.mend.io/github/open-feature/js-sdk ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC4xMjAuMSIsInVwZGF0ZWRJblZlciI6IjM4LjEzNS4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-12-09 09:11:20 -05:00
OpenFeature Bot
3c9f2c6e36
chore(main): release react-sdk 0.4.9 ( #1076 )
...
🤖 I have created a release *beep* *boop*
---
##
[0.4.9](https://github.com/open-feature/js-sdk/compare/react-sdk-v0.4.8...react-sdk-v0.4.9 )
(2024-12-04)
### ✨ New Features
* re-render if flagsChanged is falsy
([#1095 ](https://github.com/open-feature/js-sdk/issues/1095 ))
([78516f4
](78516f4181
))
### 📚 Documentation
* fix typos, links, and format
([#1075 ](https://github.com/open-feature/js-sdk/issues/1075 ))
([418409e
](418409e3fa
))
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
Signed-off-by: OpenFeature Bot <109696520+openfeaturebot@users.noreply.github.com>
2024-12-04 13:36:51 -05:00
Todd Baert
78516f4181
feat: re-render if flagsChanged is falsy ( #1095 )
...
Adds an improvement to the React SDK which supports re-renders if the
[flags
changed](https://open-feature.github.io/js-sdk/types/_openfeature_server_sdk.ConfigChangeEvent.html )
array from a provider event is falsy.
Since some providers have no knowledge of flags which are changed, this
allows them to support dynamic re-rendering by not defining this
property. If the prop is null/undefined, we diff all flags... If the
property is explicitly set to an empty array, that means no flags have
changed and the React SDK skips all diff checks.
Signed-off-by: Todd Baert <todd.baert@dynatrace.com>
2024-12-04 18:31:56 +00:00
OpenFeature Bot
5ece80e16a
chore(main): release angular-sdk 0.0.9-experimental ( #1094 )
...
🤖 I have created a release *beep* *boop*
---
##
[0.0.9-experimental](https://github.com/open-feature/js-sdk/compare/angular-sdk-v0.0.8-experimental...angular-sdk-v0.0.9-experimental )
(2024-11-21)
### 🧹 Chore
* **angular:** add repository to package.json
([#1093 ](https://github.com/open-feature/js-sdk/issues/1093 ))
([35f000e
](35f000e0f3
))
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
Signed-off-by: OpenFeature Bot <109696520+openfeaturebot@users.noreply.github.com>
2024-11-21 21:24:23 +01:00
Lukas Reining
35f000e0f3
chore(angular): add repository to package.json ( #1093 )
...
<!-- Please use this template for your pull request. -->
<!-- Please use the sections that you need and delete other sections -->
## This PR
<!-- add the description of the PR here -->
- adds this new feature
### Related Issues
<!-- add here the GitHub issue that this PR resolves if applicable -->
Fixes #1234523
### Notes
<!-- any additional notes for this PR -->
### Follow-up Tasks
<!-- anything that is related to this PR but not done here should be
noted under this section -->
<!-- if there is a need for a new issue, please link it here -->
### How to test
<!-- if applicable, add testing instructions under this section -->
Signed-off-by: Lukas Reining <lukas.reining@codecentric.de>
2024-11-21 21:23:19 +01:00
OpenFeature Bot
d521f2dd6e
chore(main): release angular-sdk 0.0.8-experimental ( #1092 )
...
🤖 I have created a release *beep* *boop*
---
##
[0.0.8-experimental](https://github.com/open-feature/js-sdk/compare/angular-sdk-v0.0.7-experimental...angular-sdk-v0.0.8-experimental )
(2024-11-21)
### ✨ New Features
* Angular SDK
([#997 ](https://github.com/open-feature/js-sdk/issues/997 ))
([105fd95
](105fd95e34
))
* **angular:** add Angular 18 support
([#1063 ](https://github.com/open-feature/js-sdk/issues/1063 ))
([e62d6d4
](e62d6d4b7e
))
* **angular:** add angular 19 to peerDependencies
([4893d6f
](4893d6f000
))
### 🐛 Bug Fixes
* **angular:** add package description
([#1026 ](https://github.com/open-feature/js-sdk/issues/1026 ))
([dc63ca8
](dc63ca8b9d
))
* **angular:** fix race condition on initialization
([#1052 ](https://github.com/open-feature/js-sdk/issues/1052 ))
([12eaa97
](12eaa9758d
))
* copy license to package correctly
([#1011 ](https://github.com/open-feature/js-sdk/issues/1011 ))
([458d278
](458d278345
))
* fix release of angular sdk
([4a370cc
](4a370cc73f
))
### 🧹 Chore
* add npm keywords for angular
([#1015 ](https://github.com/open-feature/js-sdk/issues/1015 ))
([6b11165
](6b11165aa1
))
* **main:** release angular-sdk 0.0.1-experimental
([#1003 ](https://github.com/open-feature/js-sdk/issues/1003 ))
([ed3aaa4
](ed3aaa48c0
))
* **main:** release angular-sdk 0.0.1-experimental
([#1010 ](https://github.com/open-feature/js-sdk/issues/1010 ))
([eb42c4c
](eb42c4c9e6
))
* **main:** release angular-sdk 0.0.2-experimental
([#1008 ](https://github.com/open-feature/js-sdk/issues/1008 ))
([f74056c
](f74056c02b
))
* **main:** release angular-sdk 0.0.2-experimental
([#1012 ](https://github.com/open-feature/js-sdk/issues/1012 ))
([8bdc164
](8bdc16430c
))
* **main:** release angular-sdk 0.0.3-experimental
([#1014 ](https://github.com/open-feature/js-sdk/issues/1014 ))
([baec2fb
](baec2fb350
))
* **main:** release angular-sdk 0.0.4-experimental
([#1027 ](https://github.com/open-feature/js-sdk/issues/1027 ))
([c1374bb
](c1374bb7b3
))
* **main:** release angular-sdk 0.0.5-experimental
([#1053 ](https://github.com/open-feature/js-sdk/issues/1053 ))
([5636983
](56369839b6
))
* **main:** release angular-sdk 0.0.6-experimental
([#1064 ](https://github.com/open-feature/js-sdk/issues/1064 ))
([7f9001e
](7f9001ec0a
))
* **main:** release angular-sdk 0.0.7-experimental
([#1088 ](https://github.com/open-feature/js-sdk/issues/1088 ))
([6016465
](6016465f9a
))
* **main:** release angular-sdk 0.0.7-experimental
([#1091 ](https://github.com/open-feature/js-sdk/issues/1091 ))
([2a21f4f
](2a21f4fd60
))
### 📚 Documentation
* **angular:** improve angular readme layout
([#1013 ](https://github.com/open-feature/js-sdk/issues/1013 ))
([ee52da9
](ee52da9a01
))
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
---------
Signed-off-by: OpenFeature Bot <109696520+openfeaturebot@users.noreply.github.com>
Signed-off-by: Lukas Reining <lukas.reining@codecentric.de>
Co-authored-by: Lukas Reining <lukas.reining@codecentric.de>
2024-11-21 21:15:34 +01:00
OpenFeature Bot
2a21f4fd60
chore(main): release angular-sdk 0.0.7-experimental ( #1091 )
...
rereleases angular 0.0.7
---------
Signed-off-by: OpenFeature Bot <109696520+openfeaturebot@users.noreply.github.com>
Signed-off-by: Lukas Reining <lukas.reining@codecentric.de>
Co-authored-by: Lukas Reining <lukas.reining@codecentric.de>
2024-11-21 21:11:05 +01:00
Michael Beemer
39da1a9ba1
ci: add id token write permissions ( #1090 )
...
Signed-off-by: Michael Beemer <beeme1mr@users.noreply.github.com>
2024-11-21 14:16:19 -05:00
OpenFeature Bot
6016465f9a
chore(main): release angular-sdk 0.0.7-experimental ( #1088 )
...
🤖 I have created a release *beep* *boop*
---
##
[0.0.7-experimental](https://github.com/open-feature/js-sdk/compare/angular-sdk-v0.0.6-experimental...angular-sdk-v0.0.7-experimental )
(2024-11-21)
### ✨ New Features
* **angular:** add angular 19 to peerDependencies
([4893d6f
](4893d6f000
))
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
Signed-off-by: OpenFeature Bot <109696520+openfeaturebot@users.noreply.github.com>
2024-11-21 18:17:05 +01:00
Lukas Reining
4893d6f000
feat(angular): add angular 19 to peerDependencies
...
Signed-off-by: Lukas Reining <lukas.reining@codecentric.de>
2024-11-21 18:14:28 +01:00
Lukas Reining
21f53ef956
feat(angular): add angular 19 support ( #1084 )
2024-11-21 17:35:51 +01:00
Michael Beemer
c97d6d1794
ci: add provenance statement to released artifacts ( #1081 )
...
## This PR
- add provenance statement to released artifacts
### Notes
Snippet from the NPM docs:
> You can generate provenance statements for the packages you publish.
This allows you to publicly establish where a package was built and who
published a package, which can increase supply-chain security for your
packages.
It also adds a cool badge in NPM 😎
### Resources
-
https://docs.npmjs.com/generating-provenance-statements#example-github-actions-workflow
Signed-off-by: Michael Beemer <beeme1mr@users.noreply.github.com>
2024-11-20 14:36:08 -05:00
OpenFeature Bot
1ba149d8e5
chore(main): release server-sdk 1.16.2 ( #1079 )
...
🤖 I have created a release *beep* *boop*
---
##
[1.16.2](https://github.com/open-feature/js-sdk/compare/server-sdk-v1.16.1...server-sdk-v1.16.2 )
(2024-11-07)
### 🧹 Chore
* loosen peer dependency requirements, remove some ci automation
([#1080 ](https://github.com/open-feature/js-sdk/issues/1080 ))
([ef3ba21
](ef3ba2167a
))
### 🚀 Performance
* avoid using exceptions for flow control
([#1074 ](https://github.com/open-feature/js-sdk/issues/1074 ))
([26264d6
](26264d6d09
))
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
Signed-off-by: OpenFeature Bot <109696520+openfeaturebot@users.noreply.github.com>
Signed-off-by: Todd Baert <todd.baert@dynatrace.com>
Co-authored-by: Todd Baert <todd.baert@dynatrace.com>
2024-11-07 12:16:03 -05:00
OpenFeature Bot
6f1c0b33ec
chore(main): release web-sdk 1.3.2 ( #1078 )
...
🤖 I have created a release *beep* *boop*
---
##
[1.3.2](https://github.com/open-feature/js-sdk/compare/web-sdk-v1.3.1...web-sdk-v1.3.2 )
(2024-11-07)
### 🐛 Bug Fixes
* update OpenFeature core version to 1.5.0
([#1077 ](https://github.com/open-feature/js-sdk/issues/1077 ))
([a3469b6
](a3469b6799
))
### 🧹 Chore
* loosen peer dependency requirements, remove some ci automation
([#1080 ](https://github.com/open-feature/js-sdk/issues/1080 ))
([ef3ba21
](ef3ba2167a
))
### 🚀 Performance
* avoid using exceptions for flow control
([#1074 ](https://github.com/open-feature/js-sdk/issues/1074 ))
([26264d6
](26264d6d09
))
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
Signed-off-by: OpenFeature Bot <109696520+openfeaturebot@users.noreply.github.com>
2024-11-07 12:09:48 -05:00
Todd Baert
ef3ba2167a
chore: loosen peer dependency requirements, remove some ci automation ( #1080 )
...
Signed-off-by: Todd Baert <todd.baert@dynatrace.com>
2024-11-07 12:04:41 -05:00
Michael Beemer
a3469b6799
fix: update OpenFeature core version to 1.5.0 ( #1077 )
...
## This PR
- bumps OpenFeature core version to match the current release
### Notes
This should have been automatically by the CI but it didn't work for
some reason. I'll look into why after the issue is resolved.
fe3ad8eeb9 (diff-e35631c960979816b4b2bda7950788e968930fcaf2cf39b482ff23117cd13888R50)
Signed-off-by: Michael Beemer <beeme1mr@users.noreply.github.com>
Co-authored-by: Todd Baert <todd.baert@dynatrace.com>
2024-11-07 08:34:36 -05:00
Michael Beemer
26264d6d09
perf: avoid using exceptions for flow control ( #1074 )
...
## This PR
- avoids using error codes as flow control during an evaluation
Signed-off-by: Michael Beemer <beeme1mr@users.noreply.github.com>
2024-11-06 21:50:01 +00:00
Michael Beemer
418409e3fa
docs: fix typos, links, and format ( #1075 )
...
Signed-off-by: Michael Beemer <beeme1mr@users.noreply.github.com>
2024-11-05 13:06:41 -05:00
OpenFeature Bot
57ec47bb21
chore(main): release react-sdk 0.4.8 ( #1071 )
...
🤖 I have created a release *beep* *boop*
---
##
[0.4.8](https://github.com/open-feature/js-sdk/compare/react-sdk-v0.4.7...react-sdk-v0.4.8 )
(2024-10-29)
### 🧹 Chore
* bump minimum web peer
([#1072 ](https://github.com/open-feature/js-sdk/issues/1072 ))
([eca8205
](eca8205da7
))
### 📚 Documentation
* add tracking sections
([#1068 ](https://github.com/open-feature/js-sdk/issues/1068 ))
([e131faf
](e131faffad
))
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
Signed-off-by: OpenFeature Bot <109696520+openfeaturebot@users.noreply.github.com>
2024-10-29 14:08:09 -04:00
Todd Baert
eca8205da7
chore: bump minimum web peer ( #1072 )
...
- require web 1.3.0+ for tracking
Signed-off-by: Todd Baert <todd.baert@dynatrace.com>
2024-10-29 18:03:30 +00:00
OpenFeature Bot
b257cb41b9
chore(main): release web-sdk 1.3.1 ( #1069 )
...
🤖 I have created a release *beep* *boop*
---
##
[1.3.1](https://github.com/open-feature/js-sdk/compare/web-sdk-v1.3.0...web-sdk-v1.3.1 )
(2024-10-29)
### 📚 Documentation
* add tracking sections
([#1068 ](https://github.com/open-feature/js-sdk/issues/1068 ))
([e131faf
](e131faffad
))
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
Signed-off-by: OpenFeature Bot <109696520+openfeaturebot@users.noreply.github.com>
Signed-off-by: Todd Baert <todd.baert@dynatrace.com>
Co-authored-by: Todd Baert <todd.baert@dynatrace.com>
2024-10-29 13:18:33 -04:00