our_app
mlaanderson/database-js-common 0
Common modules for database-js driver implementations
Simple ajax loader which allow load files sent via ajax request to folder where process is running
Go through https://www.tutorialspoint.com/angular2/
MongoDB standalone caching library for Node.JS and also cache engine for cacheman
Simple composer repo for JetBrains BugTracker test
React application created via create-react-app for reproducing bugs purpose
create barnchpahan35/jetbrains-academy-Simple_Search_Engine
created branch time in 2 days
created repositorypahan35/jetbrains-academy-Simple_Search_Engine
https://hyperskill.org/projects/89/
created time in 2 days
create barnchpahan35/jetbrains-academy-Smart_Calculator
created branch time in 3 days
created repositorypahan35/jetbrains-academy-Smart_Calculator
https://hyperskill.org/projects/88
created time in 3 days
issue commentFullHuman/purgecss
`:not` selector missing in 2.x
I'll add your package 1.6.0 into my repo https://github.com/pahan35/web-ui-boilerplate with RMWC into a separate branch and then upgrade to 3.0.0 to reproduce this bug. I'll ping this thread in when I do it (in a week or two).
Or feel free to do it yourself faster, if you have time for it.
comment created time in 4 days
issue closedchashnikov/IntelliJ-presentation-assistant
No hints are shown in the latest IDE build
For some reason, the plugin stopped showing me hints after updating to last PyCharm: Recorded screencast
Plugin reinstall, disabling custom plugins, invalidating cache and restart don't resolve the issue. @chashnikov do you have any idea where the problem is and how to fix it?
PyCharm 2020.2.2 (Professional Edition) Build #PY-202.7319.64, built on September 16, 2020 Runtime version: 11.0.8+10-b944.31 x86_64 VM: OpenJDK 64-Bit Server VM by JetBrains s.r.o. macOS 10.15.6 GC: ParNew, ConcurrentMarkSweep Memory: 2452M Cores: 12 Registry: projectView.hide.dot.idea=false, jest.test.tree.use.jasmine.reporter=false Non-Bundled Plugins: Key Promoter X, String Manipulation, com.jetbrains.php.framework, org.intellij.plugins.postcss, com.wakatime.intellij.plugin, krasa.CpuUsageIndicator, name.kropp.intellij.makefile, net.p35.common-enum-values, net.vektah.codeglance, org.nik.presentation-assistant, org.toml.lang, ImportCost, com.google.gct.core, NodeJS, com.jetbrains.lang.ejs, intellij.prettierJS, jones.restarteslintaction.restart-eslint-action
For fresh installations in IntelliJ IDEA Ultimate everything is OK.
closed time in 4 days
pahan35issue commentchashnikov/IntelliJ-presentation-assistant
No hints are shown in the latest IDE build
The problem is resolved after installing the latest PyCharm-EAP and running Invalidate cache and restart.
PyCharm 2020.3 EAP (Professional Edition) Build #PY-203.3645.40, built on September 22, 2020 PyCharm EAP User Expiration date: October 22, 2020 Runtime version: 11.0.8+10-b1094.1 x86_64 VM: OpenJDK 64-Bit Server VM by JetBrains s.r.o. macOS 10.15.6 GC: ParNew, ConcurrentMarkSweep Memory: 2271M Cores: 12 Registry: projectView.hide.dot.idea=false, jest.test.tree.use.jasmine.reporter=false Non-Bundled Plugins: String Manipulation, com.jetbrains.php.framework, com.wakatime.intellij.plugin, krasa.CpuUsageIndicator, net.p35.common-enum-values, net.vektah.codeglance, name.kropp.intellij.makefile, org.nik.presentation-assistant, org.toml.lang, NodeJS, com.jetbrains.lang.ejs, intellij.prettierJS, jones.restarteslintaction.restart-eslint-action
comment created time in 4 days
created repositorypahan35/jetbrains-academy-Minesweeper
https://hyperskill.org/projects/8/
created time in 9 days
issue commenttesting-library/react-testing-library
bug: inconsistent React.lazy behavior when running single and multiple tests
@eps1lon it works with the approach proposed in the workaround. Thanks!
comment created time in 11 days
issue openedtesting-library/react-testing-library
bug: inconsistent React.lazy behavior when running single and multiple tests
@testing-library/reactversion: 11.0.4- Testing Framework and version:
jest: 26.4.2 - DOM Environment:
jsdom: 16.4.0
Relevant code or config:
Parent.test.js
import {render} from '@testing-library/react'
import Parent from 'Components/LazyLoadInconsistency/Parent'
import React from 'react'
test('single test 1', async () => {
const {findByText} = render(<Parent />)
expect(await findByText(/Count is 2/i)).toBeInTheDocument()
})
test('single test 2', async () => {
const {findByText} = render(<Parent />)
expect(await findByText(/Count is 2/i)).toBeInTheDocument()
})
Parent.js
import React, {Suspense, useEffect, useRef, useState} from 'react'
const LazyChild = React.lazy(() =>
import('Components/LazyLoadInconsistency/LazyChild'),
)
class Api {
constructor(onSearch) {
this.onSearch = onSearch
}
onReady() {
this.ready = true
this.search()
}
search() {
if (!this.ready) {
return
}
this.onSearch()
}
}
export default function Parent() {
const [count, setCount] = useState(0)
const apiRef = useRef(new Api(() => setCount(prevCount => prevCount + 1)))
useEffect(() => {
apiRef.current.onReady()
}, [])
return (
<Suspense fallback={null}>
<LazyChild apiRef={apiRef} />
<span>Count is {count}</span>
</Suspense>
)
}
LazyChild.js
import React, {useEffect} from 'react'
export default function LazyChild({apiRef}) {
useEffect(() => {
apiRef.current.search()
}, [apiRef])
return <div>I'm lazy</div>
}
What you did:
I'm running multiple tests from Parent.test.js during a single run.
What happened:
The second test fails even if it is the same as the first one, which passed successfully.
Reproduction:
Please use this repo https://github.com/pahan35/web-ui-boilerplate and branch bug/lazy-inconsistency to reproduce the described problem.
- Clone the mentioned repo.
- Switch to branch
bug/lazy-inconsistency. npm i.- Run single tests and check that they work as expected
$ jest -t "single test 1"
$ jest -t "single test 2"
- Try to run the whole test file
$ jest Parent.test.js
It fails :(
Problem description:
When I debugged this test run inconsistency, I noticed that React.lazy() is called only once. Because of it, useEffect from LazyChild is fired faster than useEffect from Parent, as it was on the first run, and it is in the real environment, and we see inconsistency when running tests in different modes. Recorded screencast with debugging logging
Suggested solution:
I don't know which side it should be fixed, but I think React.lazy should be fired on each test run to be as close to the real environment as possible. Here is only one call to React.lazy() recorded.
created time in 12 days
create barnchpahan35/web-ui-boilerplate
branch : bug/lazy-inconsistency
created branch time in 12 days
issue openedchashnikov/IntelliJ-presentation-assistant
No hints are shown in the latest IDE build
For some reason, the plugin stopped showing me hints after updating to last PyCharm: Recorded screencast
Plugin reinstall, disabling custom plugins, invalidating cache and restart don't resolve the issue. @chashnikov do you have any idea where the problem is and how to fix it?
PyCharm 2020.2.2 (Professional Edition) Build #PY-202.7319.64, built on September 16, 2020 Runtime version: 11.0.8+10-b944.31 x86_64 VM: OpenJDK 64-Bit Server VM by JetBrains s.r.o. macOS 10.15.6 GC: ParNew, ConcurrentMarkSweep Memory: 2452M Cores: 12 Registry: projectView.hide.dot.idea=false, jest.test.tree.use.jasmine.reporter=false Non-Bundled Plugins: Key Promoter X, String Manipulation, com.jetbrains.php.framework, org.intellij.plugins.postcss, com.wakatime.intellij.plugin, krasa.CpuUsageIndicator, name.kropp.intellij.makefile, net.p35.common-enum-values, net.vektah.codeglance, org.nik.presentation-assistant, org.toml.lang, ImportCost, com.google.gct.core, NodeJS, com.jetbrains.lang.ejs, intellij.prettierJS, jones.restarteslintaction.restart-eslint-action
For fresh installations in IntelliJ IDEA Ultimate everything is OK.
created time in 12 days
push eventpahan35/web-ui-boilerplate
commit sha 165f832ce9d8de8624f95d0e7868e35ba1476f8e
build: update deps
commit sha 3a5d7838e2eccb8588a956ae9e1bbd7faf7f5f0b
build: update deps with vulnerability
push time in 12 days
issue commentsearchkit/searchkit
There is a usage of deprecated context.
Warning: Legacy context API has been detected within a strict-mode tree. The old API will be supported in all 16.x releases, but applications using it should migrate to the new version. Please update the following components: SearchBox, SearchkitProvider Learn more about this warning here: https://fb.me/react-legacy-context
@joemcelroy are you going to migrate searchkit to a new Context API?
comment created time in 13 days
push eventpahan35/react-rmwc-mmt-bug
commit sha 3487a5be6fa23d63a29298342e11bd797f981e5b
feat: use real non-repeatable slot id
push time in 25 days
push eventpahan35/react-rmwc-mmt-bug
commit sha ca9c52375d771d3250969d767795ad5c4ff35526
feat: imitate append page behavior with infinite slot
push time in 25 days
push eventpahan35/react-rmwc-mmt-bug
commit sha 0917ae0ad6f3792b4cf4e30b19a0b4b83dc717aa
feat: imitate open/close sidebar behavior
push time in a month
push eventpahan35/react-rmwc-mmt-bug
commit sha c414beb66ac90d305f9c24488c64f25f6c9800d2
feat: reproduce call to render method when something is changed in parent
push time in a month
push eventpahan35/react-rmwc-mmt-bug
commit sha 51199d04a3b8e72b3cc119bf25b97fcceb8b00ca
fix: error on rerendering Co-authored-by: Dmytro Sadovnychyi <[email protected]>
push time in a month
push eventpahan35/web-ui-boilerplate
push time in a month
push eventpahan35/react-rmwc-mmt-bug
commit sha 170ca195a49d1cfaed176e8b07783278aee9391d
feat: be more close to real world behavior
push time in a month
push eventpahan35/web-ui-boilerplate
commit sha a310df1b8fc9a8d15c51259b8ff338d86516870d
feat: add reproducible example
commit sha 170ca195a49d1cfaed176e8b07783278aee9391d
feat: be more close to real world behavior
push time in a month
push eventpahan35/react-rmwc-mmt-bug
commit sha a310df1b8fc9a8d15c51259b8ff338d86516870d
feat: add reproducible example
push time in a month
push eventpahan35/web-ui-boilerplate
commit sha 8c0d460e1f276d1a33e6d5034ec72c07e879ff04
feat: add start server instruction
push time in a month
push eventpahan35/web-ui-boilerplate
commit sha 9bab8cd9c297a747cbe50d0f56931f79c11e8dda
fix: mdc babelizing
push time in a month
issue commentfb55/css-select
Release a version with fresh deps
The only benefit I see is that it'll prevent duplicating of domutils in https://github.com/TrySound/postcss-inline-svg/pull/74
However, I don't see activity there right now, so maybe there is no reason to do it right now.
comment created time in a month
PR opened TrySound/postcss-inline-svg
Hi there!
I noticed that some deps of this package are not updated.
That older deps contains older versions of packages than fresher deps from other packages.
BTW, you have the same situation with domutils, because css-select contains an older version while you use a newer one. It was updated in code, but not released yet. I asked about the release here https://github.com/fb55/css-select/issues/216
pr created time in a month
issue openedfb55/css-select
Release a version with fresh deps
@fb55 is there any chance to get a release with "domutils": "^2.1.0"?
I noticed that it was updated nearly 5 months ago, but there is no new release :(
created time in a month
fork pahan35/postcss-inline-svg
PostCSS plugin to reference an SVG file and control its attributes with CSS syntax
fork in a month
issue commentbenmosher/eslint-plugin-import
[deps][question] The reason of outdated packages
@ljharb, thanks for the explanation!
As I see here, https://endoflife.date/nodejs Node v12 is the oldest LTS with active support.
Is there any reason to support the older node versions?
As I see, eslint itself actively drops support for old versions https://github.com/eslint/eslint/releases/tag/v7.0.0
Here https://github.com/TrySound/postcss-inline-svg/pull/68 is also a PR for dropping not supported node version, but it looks like that repo isn't actively maintained.
Maybe it's better to sync up the latest node support version with eslint itself, releasing drops for support with major releases?
I'm just curious about the reasons.
comment created time in a month
issue openedbenmosher/eslint-plugin-import
[deps][question] The reason of outdated packages
Hi there!
Is there any reason to keep some of your deps outdated?
For example, you have
{
"debug": "^2.6.9",
"doctrine": "1.5.0",
"read-pkg-up": "^2.0.0"
}
However, in my project, those packages are higher for most of the packages
{
"debug": "^4.1.1",
"doctrine": "^3.0.0",
"read-pkg-up": "^7.0.1"
}
Because of it, such outdated deps are loaded inside of the package itself into <package>/node_modules/

I prefer to avoid it, but it's possible only if you update your deps.
Are those deps kept outdated because of some reason or just because of a lack of time to update it?
created time in a month
issue commentFullHuman/purgecss
`:not` selector missing in 2.x
The issue is reproducible when you try to use this package in React project https://github.com/jamesmfriedman/rmwc/tree/master/src/list : no cursor: pointer above active list items.
comment created time in 2 months
pull request commentFullHuman/purgecss
Fix leading not pseudo selector
The content itself is a simple RMWC list component https://github.com/jamesmfriedman/rmwc/tree/master/src/list There is a simple a few examples of markup.
Because of this issue, there are no cursor: pointer on available list items.
comment created time in 2 months
push eventlawinsider/react-phone-input-2
commit sha fd76aa2b00094703c99546f2d494674212a5e7bf
fix #159 #162
commit sha 803347a1e9ce93db0ab38b4c33bffe87d5efe06c
fix #157: replace id usage to classes to avoid warnings #168 Credit: @J-theGit
commit sha 65273cadd4cd4fcc125b3ade1e6d2a92cdf739a5
Persist event for onChange event. (#176) Since the onChange event prop is called in a setState callback, based on the nature of a Synthetic event it won't be persisted when passed to the this.props.onChange call at line 500. In order to correctly pass the event as third argument, it should be persisted before any async operation, otherwise it'll be nullified.
commit sha e07fc902005120dfc26aaec144ca03a185aef0d1
custom tabIndex #174 #178 #165
commit sha 8dfe27720dbfee5862080c7495eed617c02dac50
close #154, alwaysDefaultMask (apply default mask to all countries)
commit sha ba4807a48d88d9645c43d9d14b62c8bb396f5917
close #173, priority
commit sha bf2600052b35c3575edc3b1a60b19c8370d1c7fc
dynamic mask creation
commit sha 0f06ee91bcafcc7bc1b83946dbe1c98987f00ddd
2.12.0
commit sha 7d99d5beddc3907a8af1bb8dfd81b89962e66c25
Move dependent territories to external list, add Jersey (#183) * Move dependent territories to external file * Add Jersey To Countries/Flags * Add enableTerritories property * Change rawTerritories variable name Co-authored-by: Geoff Giller <[email protected]>
commit sha 509c9fcb44ed84cc9c62d63845d66d96fb94b958
2.12.1
commit sha 914c280411eecfccc6770d0849abf99985bfc680
Replace label width to nowrap (#200) Replace label width to nowrap, close #199
commit sha de2c76e22796cc3a3aa594489d8a026df2e54266
Add area codes and format for Mexican phone numbers (#190)
commit sha 4716b83684bc2a737a6a9572b7b27e96e683cef7
add prepublishOnly built script, close #197
commit sha 7bcdd31ded89aa0bbc582fabea000ae5adf4dc6b
prevent keyboard actions when disableDropdown is on, close #180 Because tabIndex != '0' is not recommended, I decided to modify it programmatically when disabled instead of allowing the user to decide. See also #165.
commit sha 56af19494408e347520ec37a7a03898d36034b18
enableAreaCodeStretch, close #156 * mask handling for area codes of different length with the same country code * australia area codes
commit sha 68f8c9e79becc12c86285b1d5421ab5f922c47a3
make null work as value, close #186
commit sha 380aa7e61ed9180b9764a49d76fc3e81f660148e
add enableClickOutside, close #192
commit sha da6937fa7fc75f20d4427964da2a3765bfda8778
add showDropdown={true} to allow initially open dropdowns clear input by passing null as value, close #175
commit sha 7c72bf255c3c1efbbad68e5cedeb600a28ffb49c
option to disable defaultMask by passing empty string, close #195
commit sha fffd865f01c47588fbf202a885db2857d397370f
always return unformatted value #185 Co-authored-by: Dixon Minnick <[email protected]>
push time in 2 months
delete branch lawinsider/react-phone-input-2
delete branch : deps/update-with-origin
delete time in 2 months
PR merged lawinsider/react-phone-input-2
- [ ] Rebuild compiled styles after merging #4
pr closed time in 2 months
delete branch pahan35/rmwc
delete branch : deps/remove-unused-packages-from-externals
delete time in 2 months
pull request commentlawinsider/react-phone-input-2
PR is opened here https://github.com/lawinsider/contracts/pull/1604
Everything looks OK, but need to double-check. Maybe adding a test for it is a nice idea.
comment created time in 2 months
pull request commentlawinsider/react-phone-input-2
Not actually reviewing since I have no idea if it's still works with our frontend.
np. We'll review it on our frontend part while using the fresh version.
I'm going to do it after finishing prioritized tasks (prefix filter, search aggs optimization, extra cookies).
@prokopenkook feel free to do it yourself if you have time for it and desire. I'm all for fresh deps in our projects, but I do not always have time for it.
comment created time in 2 months
push eventlawinsider/react-phone-input-2
commit sha 82e4f81dab2b20154c28cdf079663eb4ef76b405
feat: keep compiled css inside package
commit sha 57d72cdfb24b983e7bc80b29db6c7309098c7393
Merge pull request #4 from lawinsider/feat/keep-compiled-css-in-package feat: keep compiled css inside package
commit sha 4f7792e7183af337cb10b6dc67749df4d7f62d74
Merge remote-tracking branch 'origin/master' into deps/update-with-origin
commit sha 52b8c02d1c9e1b5949396e812e82136258ae1f78
feat: update compiled css
push time in 2 months
push eventpahan35/web-ui-boilerplate
commit sha 0d8c332fa6c39d02c7025328df13403d91d4c782
chore: update deps
push time in 2 months
push eventpahan35/web-ui-boilerplate
commit sha b019a1822dca17f2909060303434a7cab97f4ef1
chore: remove @material deps
commit sha 349621b370a4ade780176e1179b760c95abda6b4
chore: update deps
push time in 2 months
issue commenttesting-library/jest-dom
toBeDisabled() does not work with latest @rmwc/dialog
@gnapse, thanks for your thorough explanation!
comment created time in 2 months
issue commenttesting-library/jest-dom
toBeDisabled() does not work with latest @rmwc/dialog
@gnapse, thanks! Your suggestion works like a charm.
Before update it was
getByText('Disabled Button')
My workaround was
getByText('Disabled Button').closest('button')
With your suggestion I have
getByRole('button', {name: 'Disabled Button'})
which is clearer.
The last question: should we avoid using getByText('button label') in our tests? Or previous behavior will be fixed someday?
comment created time in 2 months
delete branch lawinsider/react-phone-input-2
delete branch : feat/keep-compiled-css-in-package
delete time in 2 months
push eventlawinsider/react-phone-input-2
commit sha 82e4f81dab2b20154c28cdf079663eb4ef76b405
feat: keep compiled css inside package
commit sha 57d72cdfb24b983e7bc80b29db6c7309098c7393
Merge pull request #4 from lawinsider/feat/keep-compiled-css-in-package feat: keep compiled css inside package
push time in 2 months
PR merged lawinsider/react-phone-input-2
It looks like it's not possible anymore to use less import inside scss files with new sass-loader https://github.com/lawinsider/contracts/pull/1580
Because of it, I've added compiled css files to repo itself
pr closed time in 2 months
issue commentjamesmfriedman/rmwc
TextField sets aria-labelledby in the wrong element
There are changes after which getByLabelText stopped working https://github.com/testing-library/dom-testing-library/pull/681
comment created time in 2 months
issue openedtesting-library/jest-dom
toBeDisabled() does not work with latest @rmwc/dialog
@testing-library/jest-domversion: 5.11.1nodeversion: 13.7.0npm(oryarn) version: 6.14.7
@testing-library/domversion: 7.21.4@testing-library/reactversion: 10.4.7
Relevant code or config:
import React, {useContext} from 'react'
import {DialogButton} from '@rmwc/dialog'
import {act, fireEvent, render} from '@testing-library/react'
test('DialogButton disabled', () => {
const {getByText} = render(
<DialogButton disabled>Disabled Button</DialogButton>,
)
expect(getByText('Disabled Button')).toBeDisabled()
})
What you did:
I tried to migrate my codebase to recent @rmwc/dialog and @testing-library/jest-dom
What happened:
Error: expect(element).toBeDisabled()
Received element is not disabled: <span class="mdc-button__label" /> at Object.<anonymous> (/Users/p35/PycharmProjects/bug-to-be-disabled/js/Components/Team/PaymentTab.test.jsx:20:40) at Object.asyncJestTest (/Users/p35/PycharmProjects/bug-to-be-disabled/node_modules/jest-jasmine2/build/jasmineAsyncInstall.js:100:37) at /Users/p35/PycharmProjects/bug-to-be-disabled/node_modules/jest-jasmine2/build/queueRunner.js:47:12 at new Promise (<anonymous>) at mapper (/Users/p35/PycharmProjects/bug-to-be-disabled/node_modules/jest-jasmine2/build/queueRunner.js:30:19) at /Users/p35/PycharmProjects/bug-to-be-disabled/node_modules/jest-jasmine2/build/queueRunner.js:77:41 at processTicksAndRejections (internal/process/task_queues.js:97:5)
Reproduction:
https://codesandbox.io/s/react-testing-library-demo-5lnci?file=/src/tests/bug-to-be-disabled.js

Problem description:
Earlier, with deps (@testing-library/jest-dom@^5.9.0 and @testing-library/dom@^7.7.3) that code worked nice. With the new version, it fails
Suggested solution:
isElementOrAncestorDisabled() returns false because canElementBeDisabled() is false for span.
At first, we need to figure out what changed in new versions of those deps. Then we need to come up with a fix.
created time in 2 months
delete branch pahan35/jest-custom-babelizer-cache-problem
delete branch : dependabot/npm_and_yarn/lodash-4.17.19
delete time in 2 months
push eventpahan35/jest-custom-babelizer-cache-problem
commit sha 706d44b2fa097e351a1252a1531ab5ccbf6945b7
chore(deps): bump lodash from 4.17.15 to 4.17.19 Bumps [lodash](https://github.com/lodash/lodash) from 4.17.15 to 4.17.19. - [Release notes](https://github.com/lodash/lodash/releases) - [Commits](https://github.com/lodash/lodash/compare/4.17.15...4.17.19) Signed-off-by: dependabot[bot] <[email protected]>
commit sha 9f6c10cd8997c70b386caa66ce560e2d65d221e4
Merge pull request #1 from pahan35/dependabot/npm_and_yarn/lodash-4.17.19 chore(deps): bump lodash from 4.17.15 to 4.17.19
push time in 2 months
PR merged pahan35/jest-custom-babelizer-cache-problem
Bumps lodash from 4.17.15 to 4.17.19. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/lodash/lodash/releases">lodash's releases</a>.</em></p> <blockquote> <h2>4.17.16</h2> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/lodash/lodash/commit/d7fbc52ee0466a6d248f047b5d5c3e6d1e099056"><code>d7fbc52</code></a> Bump to v4.17.19</li> <li><a href="https://github.com/lodash/lodash/commit/2e1c0f22f425e9c013815b2cd7c2ebd51f49a8d6"><code>2e1c0f2</code></a> Add npm-package</li> <li><a href="https://github.com/lodash/lodash/commit/1b6c282299f4e0271f932b466c67f0f822aa308e"><code>1b6c282</code></a> Bump to v4.17.18</li> <li><a href="https://github.com/lodash/lodash/commit/a370ac81408de2da77a82b3c4b61a01a3b9c2fac"><code>a370ac8</code></a> Bump to v4.17.17</li> <li><a href="https://github.com/lodash/lodash/commit/1144918f3578a84fcc4986da9b806e63a6175cbb"><code>1144918</code></a> Rebuild lodash and docs</li> <li><a href="https://github.com/lodash/lodash/commit/3a3b0fd339c2109563f7e8167dc95265ed82ef3e"><code>3a3b0fd</code></a> Bump to v4.17.16</li> <li><a href="https://github.com/lodash/lodash/commit/c84fe82760fb2d3e03a63379b297a1cc1a2fce12"><code>c84fe82</code></a> fix(zipObjectDeep): prototype pollution (<a href="https://github-redirect.dependabot.com/lodash/lodash/issues/4759">#4759</a>)</li> <li><a href="https://github.com/lodash/lodash/commit/e7b28ea6cb17b4ca021e7c9d66218c8c89782f32"><code>e7b28ea</code></a> Sanitize sourceURL so it cannot affect evaled code (<a href="https://github-redirect.dependabot.com/lodash/lodash/issues/4518">#4518</a>)</li> <li><a href="https://github.com/lodash/lodash/commit/0cec225778d4ac26c2bac95031ecc92a94f08bbb"><code>0cec225</code></a> Fix lodash.isEqual for circular references (<a href="https://github-redirect.dependabot.com/lodash/lodash/issues/4320">#4320</a>) (<a href="https://github-redirect.dependabot.com/lodash/lodash/issues/4515">#4515</a>)</li> <li><a href="https://github.com/lodash/lodash/commit/94c3a8133cb4fcdb50db72b4fd14dd884b195cd5"><code>94c3a81</code></a> Document matches* shorthands for over* methods (<a href="https://github-redirect.dependabot.com/lodash/lodash/issues/4510">#4510</a>) (<a href="https://github-redirect.dependabot.com/lodash/lodash/issues/4514">#4514</a>)</li> <li>Additional commits viewable in <a href="https://github.com/lodash/lodash/compare/4.17.15...4.17.19">compare view</a></li> </ul> </details> <details> <summary>Maintainer changes</summary> <p>This version was pushed to npm by <a href="https://www.npmjs.com/~mathias">mathias</a>, a new releaser for lodash since your current version.</p> </details> <br />
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
<details> <summary>Dependabot commands and options</summary> <br />
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)@dependabot use these labelswill set the current labels as the default for future PRs for this repo and language@dependabot use these reviewerswill set the current reviewers as the default for future PRs for this repo and language@dependabot use these assigneeswill set the current assignees as the default for future PRs for this repo and language@dependabot use this milestonewill set the current milestone as the default for future PRs for this repo and language
You can disable automated security fix PRs for this repo from the Security Alerts page.
</details>
pr closed time in 2 months
delete branch pahan35/npm-update-default-deduped
delete branch : dependabot/npm_and_yarn/lodash-4.17.19
delete time in 2 months
push eventpahan35/npm-update-default-deduped
commit sha 8e459be802a0a4e350e8f184a17ae92fe1ade62e
build(deps): bump lodash from 4.17.15 to 4.17.19 Bumps [lodash](https://github.com/lodash/lodash) from 4.17.15 to 4.17.19. - [Release notes](https://github.com/lodash/lodash/releases) - [Commits](https://github.com/lodash/lodash/compare/4.17.15...4.17.19) Signed-off-by: dependabot[bot] <[email protected]>
commit sha c75695141f4f194f54b3b877793c67d06cbf57f5
Merge pull request #1 from pahan35/dependabot/npm_and_yarn/lodash-4.17.19 build(deps): bump lodash from 4.17.15 to 4.17.19
push time in 2 months
PR merged pahan35/npm-update-default-deduped
Bumps lodash from 4.17.15 to 4.17.19. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/lodash/lodash/releases">lodash's releases</a>.</em></p> <blockquote> <h2>4.17.16</h2> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/lodash/lodash/commit/d7fbc52ee0466a6d248f047b5d5c3e6d1e099056"><code>d7fbc52</code></a> Bump to v4.17.19</li> <li><a href="https://github.com/lodash/lodash/commit/2e1c0f22f425e9c013815b2cd7c2ebd51f49a8d6"><code>2e1c0f2</code></a> Add npm-package</li> <li><a href="https://github.com/lodash/lodash/commit/1b6c282299f4e0271f932b466c67f0f822aa308e"><code>1b6c282</code></a> Bump to v4.17.18</li> <li><a href="https://github.com/lodash/lodash/commit/a370ac81408de2da77a82b3c4b61a01a3b9c2fac"><code>a370ac8</code></a> Bump to v4.17.17</li> <li><a href="https://github.com/lodash/lodash/commit/1144918f3578a84fcc4986da9b806e63a6175cbb"><code>1144918</code></a> Rebuild lodash and docs</li> <li><a href="https://github.com/lodash/lodash/commit/3a3b0fd339c2109563f7e8167dc95265ed82ef3e"><code>3a3b0fd</code></a> Bump to v4.17.16</li> <li><a href="https://github.com/lodash/lodash/commit/c84fe82760fb2d3e03a63379b297a1cc1a2fce12"><code>c84fe82</code></a> fix(zipObjectDeep): prototype pollution (<a href="https://github-redirect.dependabot.com/lodash/lodash/issues/4759">#4759</a>)</li> <li><a href="https://github.com/lodash/lodash/commit/e7b28ea6cb17b4ca021e7c9d66218c8c89782f32"><code>e7b28ea</code></a> Sanitize sourceURL so it cannot affect evaled code (<a href="https://github-redirect.dependabot.com/lodash/lodash/issues/4518">#4518</a>)</li> <li><a href="https://github.com/lodash/lodash/commit/0cec225778d4ac26c2bac95031ecc92a94f08bbb"><code>0cec225</code></a> Fix lodash.isEqual for circular references (<a href="https://github-redirect.dependabot.com/lodash/lodash/issues/4320">#4320</a>) (<a href="https://github-redirect.dependabot.com/lodash/lodash/issues/4515">#4515</a>)</li> <li><a href="https://github.com/lodash/lodash/commit/94c3a8133cb4fcdb50db72b4fd14dd884b195cd5"><code>94c3a81</code></a> Document matches* shorthands for over* methods (<a href="https://github-redirect.dependabot.com/lodash/lodash/issues/4510">#4510</a>) (<a href="https://github-redirect.dependabot.com/lodash/lodash/issues/4514">#4514</a>)</li> <li>Additional commits viewable in <a href="https://github.com/lodash/lodash/compare/4.17.15...4.17.19">compare view</a></li> </ul> </details> <details> <summary>Maintainer changes</summary> <p>This version was pushed to npm by <a href="https://www.npmjs.com/~mathias">mathias</a>, a new releaser for lodash since your current version.</p> </details> <br />
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
<details> <summary>Dependabot commands and options</summary> <br />
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)@dependabot use these labelswill set the current labels as the default for future PRs for this repo and language@dependabot use these reviewerswill set the current reviewers as the default for future PRs for this repo and language@dependabot use these assigneeswill set the current assignees as the default for future PRs for this repo and language@dependabot use this milestonewill set the current milestone as the default for future PRs for this repo and language
You can disable automated security fix PRs for this repo from the Security Alerts page.
</details>
pr closed time in 2 months
delete branch pahan35/jest-fake-timers-with-babel-tranform-runtime-bug
delete branch : dependabot/npm_and_yarn/lodash-4.17.19
delete time in 2 months
push eventpahan35/jest-fake-timers-with-babel-tranform-runtime-bug
commit sha c26f68fcf3258d8605f296a2407d657592ad476d
chore(deps): bump lodash from 4.17.15 to 4.17.19 Bumps [lodash](https://github.com/lodash/lodash) from 4.17.15 to 4.17.19. - [Release notes](https://github.com/lodash/lodash/releases) - [Commits](https://github.com/lodash/lodash/compare/4.17.15...4.17.19) Signed-off-by: dependabot[bot] <[email protected]>
commit sha c2dad41911dae98fa47a365d308b03f52e35ed5a
Merge pull request #1 from pahan35/dependabot/npm_and_yarn/lodash-4.17.19 chore(deps): bump lodash from 4.17.15 to 4.17.19
push time in 2 months
PR merged pahan35/jest-fake-timers-with-babel-tranform-runtime-bug
Bumps lodash from 4.17.15 to 4.17.19. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/lodash/lodash/releases">lodash's releases</a>.</em></p> <blockquote> <h2>4.17.16</h2> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/lodash/lodash/commit/d7fbc52ee0466a6d248f047b5d5c3e6d1e099056"><code>d7fbc52</code></a> Bump to v4.17.19</li> <li><a href="https://github.com/lodash/lodash/commit/2e1c0f22f425e9c013815b2cd7c2ebd51f49a8d6"><code>2e1c0f2</code></a> Add npm-package</li> <li><a href="https://github.com/lodash/lodash/commit/1b6c282299f4e0271f932b466c67f0f822aa308e"><code>1b6c282</code></a> Bump to v4.17.18</li> <li><a href="https://github.com/lodash/lodash/commit/a370ac81408de2da77a82b3c4b61a01a3b9c2fac"><code>a370ac8</code></a> Bump to v4.17.17</li> <li><a href="https://github.com/lodash/lodash/commit/1144918f3578a84fcc4986da9b806e63a6175cbb"><code>1144918</code></a> Rebuild lodash and docs</li> <li><a href="https://github.com/lodash/lodash/commit/3a3b0fd339c2109563f7e8167dc95265ed82ef3e"><code>3a3b0fd</code></a> Bump to v4.17.16</li> <li><a href="https://github.com/lodash/lodash/commit/c84fe82760fb2d3e03a63379b297a1cc1a2fce12"><code>c84fe82</code></a> fix(zipObjectDeep): prototype pollution (<a href="https://github-redirect.dependabot.com/lodash/lodash/issues/4759">#4759</a>)</li> <li><a href="https://github.com/lodash/lodash/commit/e7b28ea6cb17b4ca021e7c9d66218c8c89782f32"><code>e7b28ea</code></a> Sanitize sourceURL so it cannot affect evaled code (<a href="https://github-redirect.dependabot.com/lodash/lodash/issues/4518">#4518</a>)</li> <li><a href="https://github.com/lodash/lodash/commit/0cec225778d4ac26c2bac95031ecc92a94f08bbb"><code>0cec225</code></a> Fix lodash.isEqual for circular references (<a href="https://github-redirect.dependabot.com/lodash/lodash/issues/4320">#4320</a>) (<a href="https://github-redirect.dependabot.com/lodash/lodash/issues/4515">#4515</a>)</li> <li><a href="https://github.com/lodash/lodash/commit/94c3a8133cb4fcdb50db72b4fd14dd884b195cd5"><code>94c3a81</code></a> Document matches* shorthands for over* methods (<a href="https://github-redirect.dependabot.com/lodash/lodash/issues/4510">#4510</a>) (<a href="https://github-redirect.dependabot.com/lodash/lodash/issues/4514">#4514</a>)</li> <li>Additional commits viewable in <a href="https://github.com/lodash/lodash/compare/4.17.15...4.17.19">compare view</a></li> </ul> </details> <details> <summary>Maintainer changes</summary> <p>This version was pushed to npm by <a href="https://www.npmjs.com/~mathias">mathias</a>, a new releaser for lodash since your current version.</p> </details> <br />
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
<details> <summary>Dependabot commands and options</summary> <br />
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)@dependabot use these labelswill set the current labels as the default for future PRs for this repo and language@dependabot use these reviewerswill set the current reviewers as the default for future PRs for this repo and language@dependabot use these assigneeswill set the current assignees as the default for future PRs for this repo and language@dependabot use this milestonewill set the current milestone as the default for future PRs for this repo and language
You can disable automated security fix PRs for this repo from the Security Alerts page.
</details>
pr closed time in 2 months
push eventpahan35/report-from-prs
commit sha f9d622a0993afcb0b78322d55dd573cac9437b6b
chore(deps): bump lodash from 4.17.15 to 4.17.19 Bumps [lodash](https://github.com/lodash/lodash) from 4.17.15 to 4.17.19. - [Release notes](https://github.com/lodash/lodash/releases) - [Commits](https://github.com/lodash/lodash/compare/4.17.15...4.17.19) Signed-off-by: dependabot[bot] <[email protected]>
commit sha e7d4a1448cdef0e7f06cf74c2cc4cf662b9f0db8
Merge pull request #2 from pahan35/dependabot/npm_and_yarn/lodash-4.17.19 chore(deps): bump lodash from 4.17.15 to 4.17.19
push time in 2 months
PR merged pahan35/report-from-prs
Bumps lodash from 4.17.15 to 4.17.19. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/lodash/lodash/releases">lodash's releases</a>.</em></p> <blockquote> <h2>4.17.16</h2> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/lodash/lodash/commit/d7fbc52ee0466a6d248f047b5d5c3e6d1e099056"><code>d7fbc52</code></a> Bump to v4.17.19</li> <li><a href="https://github.com/lodash/lodash/commit/2e1c0f22f425e9c013815b2cd7c2ebd51f49a8d6"><code>2e1c0f2</code></a> Add npm-package</li> <li><a href="https://github.com/lodash/lodash/commit/1b6c282299f4e0271f932b466c67f0f822aa308e"><code>1b6c282</code></a> Bump to v4.17.18</li> <li><a href="https://github.com/lodash/lodash/commit/a370ac81408de2da77a82b3c4b61a01a3b9c2fac"><code>a370ac8</code></a> Bump to v4.17.17</li> <li><a href="https://github.com/lodash/lodash/commit/1144918f3578a84fcc4986da9b806e63a6175cbb"><code>1144918</code></a> Rebuild lodash and docs</li> <li><a href="https://github.com/lodash/lodash/commit/3a3b0fd339c2109563f7e8167dc95265ed82ef3e"><code>3a3b0fd</code></a> Bump to v4.17.16</li> <li><a href="https://github.com/lodash/lodash/commit/c84fe82760fb2d3e03a63379b297a1cc1a2fce12"><code>c84fe82</code></a> fix(zipObjectDeep): prototype pollution (<a href="https://github-redirect.dependabot.com/lodash/lodash/issues/4759">#4759</a>)</li> <li><a href="https://github.com/lodash/lodash/commit/e7b28ea6cb17b4ca021e7c9d66218c8c89782f32"><code>e7b28ea</code></a> Sanitize sourceURL so it cannot affect evaled code (<a href="https://github-redirect.dependabot.com/lodash/lodash/issues/4518">#4518</a>)</li> <li><a href="https://github.com/lodash/lodash/commit/0cec225778d4ac26c2bac95031ecc92a94f08bbb"><code>0cec225</code></a> Fix lodash.isEqual for circular references (<a href="https://github-redirect.dependabot.com/lodash/lodash/issues/4320">#4320</a>) (<a href="https://github-redirect.dependabot.com/lodash/lodash/issues/4515">#4515</a>)</li> <li><a href="https://github.com/lodash/lodash/commit/94c3a8133cb4fcdb50db72b4fd14dd884b195cd5"><code>94c3a81</code></a> Document matches* shorthands for over* methods (<a href="https://github-redirect.dependabot.com/lodash/lodash/issues/4510">#4510</a>) (<a href="https://github-redirect.dependabot.com/lodash/lodash/issues/4514">#4514</a>)</li> <li>Additional commits viewable in <a href="https://github.com/lodash/lodash/compare/4.17.15...4.17.19">compare view</a></li> </ul> </details> <details> <summary>Maintainer changes</summary> <p>This version was pushed to npm by <a href="https://www.npmjs.com/~mathias">mathias</a>, a new releaser for lodash since your current version.</p> </details> <br />
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
<details> <summary>Dependabot commands and options</summary> <br />
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)@dependabot use these labelswill set the current labels as the default for future PRs for this repo and language@dependabot use these reviewerswill set the current reviewers as the default for future PRs for this repo and language@dependabot use these assigneeswill set the current assignees as the default for future PRs for this repo and language@dependabot use this milestonewill set the current milestone as the default for future PRs for this repo and language
You can disable automated security fix PRs for this repo from the Security Alerts page.
</details>
pr closed time in 2 months
push eventpahan35/ajax-file-loader
commit sha 570ce2068b504b511328222b0b779ea46d376c81
chore(deps): bump lodash from 4.17.15 to 4.17.19 Bumps [lodash](https://github.com/lodash/lodash) from 4.17.15 to 4.17.19. - [Release notes](https://github.com/lodash/lodash/releases) - [Commits](https://github.com/lodash/lodash/compare/4.17.15...4.17.19) Signed-off-by: dependabot[bot] <[email protected]>
commit sha c85df64b54dfe1e83a26b6a8095af84e6cc5fde4
Merge pull request #1 from pahan35/dependabot/npm_and_yarn/lodash-4.17.19 chore(deps): bump lodash from 4.17.15 to 4.17.19
push time in 2 months
PR merged pahan35/ajax-file-loader
Bumps lodash from 4.17.15 to 4.17.19. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/lodash/lodash/releases">lodash's releases</a>.</em></p> <blockquote> <h2>4.17.16</h2> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/lodash/lodash/commit/d7fbc52ee0466a6d248f047b5d5c3e6d1e099056"><code>d7fbc52</code></a> Bump to v4.17.19</li> <li><a href="https://github.com/lodash/lodash/commit/2e1c0f22f425e9c013815b2cd7c2ebd51f49a8d6"><code>2e1c0f2</code></a> Add npm-package</li> <li><a href="https://github.com/lodash/lodash/commit/1b6c282299f4e0271f932b466c67f0f822aa308e"><code>1b6c282</code></a> Bump to v4.17.18</li> <li><a href="https://github.com/lodash/lodash/commit/a370ac81408de2da77a82b3c4b61a01a3b9c2fac"><code>a370ac8</code></a> Bump to v4.17.17</li> <li><a href="https://github.com/lodash/lodash/commit/1144918f3578a84fcc4986da9b806e63a6175cbb"><code>1144918</code></a> Rebuild lodash and docs</li> <li><a href="https://github.com/lodash/lodash/commit/3a3b0fd339c2109563f7e8167dc95265ed82ef3e"><code>3a3b0fd</code></a> Bump to v4.17.16</li> <li><a href="https://github.com/lodash/lodash/commit/c84fe82760fb2d3e03a63379b297a1cc1a2fce12"><code>c84fe82</code></a> fix(zipObjectDeep): prototype pollution (<a href="https://github-redirect.dependabot.com/lodash/lodash/issues/4759">#4759</a>)</li> <li><a href="https://github.com/lodash/lodash/commit/e7b28ea6cb17b4ca021e7c9d66218c8c89782f32"><code>e7b28ea</code></a> Sanitize sourceURL so it cannot affect evaled code (<a href="https://github-redirect.dependabot.com/lodash/lodash/issues/4518">#4518</a>)</li> <li><a href="https://github.com/lodash/lodash/commit/0cec225778d4ac26c2bac95031ecc92a94f08bbb"><code>0cec225</code></a> Fix lodash.isEqual for circular references (<a href="https://github-redirect.dependabot.com/lodash/lodash/issues/4320">#4320</a>) (<a href="https://github-redirect.dependabot.com/lodash/lodash/issues/4515">#4515</a>)</li> <li><a href="https://github.com/lodash/lodash/commit/94c3a8133cb4fcdb50db72b4fd14dd884b195cd5"><code>94c3a81</code></a> Document matches* shorthands for over* methods (<a href="https://github-redirect.dependabot.com/lodash/lodash/issues/4510">#4510</a>) (<a href="https://github-redirect.dependabot.com/lodash/lodash/issues/4514">#4514</a>)</li> <li>Additional commits viewable in <a href="https://github.com/lodash/lodash/compare/4.17.15...4.17.19">compare view</a></li> </ul> </details> <details> <summary>Maintainer changes</summary> <p>This version was pushed to npm by <a href="https://www.npmjs.com/~mathias">mathias</a>, a new releaser for lodash since your current version.</p> </details> <br />
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
<details> <summary>Dependabot commands and options</summary> <br />
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)@dependabot use these labelswill set the current labels as the default for future PRs for this repo and language@dependabot use these reviewerswill set the current reviewers as the default for future PRs for this repo and language@dependabot use these assigneeswill set the current assignees as the default for future PRs for this repo and language@dependabot use this milestonewill set the current milestone as the default for future PRs for this repo and language
You can disable automated security fix PRs for this repo from the Security Alerts page.
</details>
pr closed time in 2 months
delete branch pahan35/frontend-project-lvl1
delete branch : dependabot/npm_and_yarn/lodash-4.17.19
delete time in 2 months
push eventpahan35/frontend-project-lvl1
commit sha 851192d09ea73105ebf190a3b149807c29fdccf4
chore(deps): bump lodash from 4.17.15 to 4.17.19 Bumps [lodash](https://github.com/lodash/lodash) from 4.17.15 to 4.17.19. - [Release notes](https://github.com/lodash/lodash/releases) - [Commits](https://github.com/lodash/lodash/compare/4.17.15...4.17.19) Signed-off-by: dependabot[bot] <[email protected]>
commit sha d992e46ce38ef9c583d5adb572e84272db74cd68
Merge pull request #1 from pahan35/dependabot/npm_and_yarn/lodash-4.17.19 chore(deps): bump lodash from 4.17.15 to 4.17.19
push time in 2 months
PR merged pahan35/frontend-project-lvl1
Bumps lodash from 4.17.15 to 4.17.19. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/lodash/lodash/releases">lodash's releases</a>.</em></p> <blockquote> <h2>4.17.16</h2> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/lodash/lodash/commit/d7fbc52ee0466a6d248f047b5d5c3e6d1e099056"><code>d7fbc52</code></a> Bump to v4.17.19</li> <li><a href="https://github.com/lodash/lodash/commit/2e1c0f22f425e9c013815b2cd7c2ebd51f49a8d6"><code>2e1c0f2</code></a> Add npm-package</li> <li><a href="https://github.com/lodash/lodash/commit/1b6c282299f4e0271f932b466c67f0f822aa308e"><code>1b6c282</code></a> Bump to v4.17.18</li> <li><a href="https://github.com/lodash/lodash/commit/a370ac81408de2da77a82b3c4b61a01a3b9c2fac"><code>a370ac8</code></a> Bump to v4.17.17</li> <li><a href="https://github.com/lodash/lodash/commit/1144918f3578a84fcc4986da9b806e63a6175cbb"><code>1144918</code></a> Rebuild lodash and docs</li> <li><a href="https://github.com/lodash/lodash/commit/3a3b0fd339c2109563f7e8167dc95265ed82ef3e"><code>3a3b0fd</code></a> Bump to v4.17.16</li> <li><a href="https://github.com/lodash/lodash/commit/c84fe82760fb2d3e03a63379b297a1cc1a2fce12"><code>c84fe82</code></a> fix(zipObjectDeep): prototype pollution (<a href="https://github-redirect.dependabot.com/lodash/lodash/issues/4759">#4759</a>)</li> <li><a href="https://github.com/lodash/lodash/commit/e7b28ea6cb17b4ca021e7c9d66218c8c89782f32"><code>e7b28ea</code></a> Sanitize sourceURL so it cannot affect evaled code (<a href="https://github-redirect.dependabot.com/lodash/lodash/issues/4518">#4518</a>)</li> <li><a href="https://github.com/lodash/lodash/commit/0cec225778d4ac26c2bac95031ecc92a94f08bbb"><code>0cec225</code></a> Fix lodash.isEqual for circular references (<a href="https://github-redirect.dependabot.com/lodash/lodash/issues/4320">#4320</a>) (<a href="https://github-redirect.dependabot.com/lodash/lodash/issues/4515">#4515</a>)</li> <li><a href="https://github.com/lodash/lodash/commit/94c3a8133cb4fcdb50db72b4fd14dd884b195cd5"><code>94c3a81</code></a> Document matches* shorthands for over* methods (<a href="https://github-redirect.dependabot.com/lodash/lodash/issues/4510">#4510</a>) (<a href="https://github-redirect.dependabot.com/lodash/lodash/issues/4514">#4514</a>)</li> <li>Additional commits viewable in <a href="https://github.com/lodash/lodash/compare/4.17.15...4.17.19">compare view</a></li> </ul> </details> <details> <summary>Maintainer changes</summary> <p>This version was pushed to npm by <a href="https://www.npmjs.com/~mathias">mathias</a>, a new releaser for lodash since your current version.</p> </details> <br />
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
<details> <summary>Dependabot commands and options</summary> <br />
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)@dependabot use these labelswill set the current labels as the default for future PRs for this repo and language@dependabot use these reviewerswill set the current reviewers as the default for future PRs for this repo and language@dependabot use these assigneeswill set the current assignees as the default for future PRs for this repo and language@dependabot use this milestonewill set the current milestone as the default for future PRs for this repo and language
You can disable automated security fix PRs for this repo from the Security Alerts page.
</details>
pr closed time in 2 months
issue commentjamesmfriedman/rmwc
TextField sets aria-labelledby in the wrong element
I also noticed that there is a kind of broken id in the input element itself and label.
As I see in specs https://www.w3.org/TR/wai-aria-practices-1.1/#naming_with_aria-labelledby aria-labelledby may reference several elements by ids split by space.
However, in @rmwc/textfield next code will generate kind of broken reference because ids used in aria-labelledby can't contain spaces to support multiple references
This code produces next snapshot
import {TextField} from '@rmwc/textfield'
import React from 'react'
import renderer from 'react-test-renderer'
test('TextField snapshot', () => {
expect(
renderer.create(<TextField label="Multiple words" />).toJSON(),
).toMatchSnapshot()
})
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`TextField snapshot 1`] = `
<label
aria-labelledby="textfield-Multiple words-label"
className="mdc-text-field mdc-text-field--upgraded"
onBlur={[Function]}
onClick={[Function]}
onFocus={[Function]}
onKeyDown={[Function]}
onKeyUp={[Function]}
onMouseDown={[Function]}
onMouseUp={[Function]}
onTouchEnd={[Function]}
onTouchStart={[Function]}
style={Object {}}
>
<span
className="mdc-text-field__ripple"
/>
<input
className="mdc-text-field__input"
onBlur={[Function]}
onFocus={[Function]}
onInput={[Function]}
onMouseDown={[Function]}
onTouchStart={[Function]}
style={Object {}}
/>
<span
className="mdc-floating-label"
id="textfield-Multiple words-label"
onAnimationEnd={[Function]}
style={Object {}}
>
Multiple words
</span>
<span
className="mdc-line-ripple mdc-line-ripple--deactivating"
onTransitionEnd={[Function]}
style={
Object {
"transformOrigin": "0px center",
}
}
/>
</label>
`;
As you see, aria-labelledby has attribute value which might be interpreted in 2 different ways.
Because of this change, tests like the next one fails with the latest @testing-library/react
import {TextField} from '@rmwc/textfield'
import {render} from '@testing-library/react'
import React from 'react'
test('getByLabelText() multiple words', () => {
const {getByLabelText} = render(<TextField label="Multiple words" />)
expect(getByLabelText(/Multiple words/i)).toBeInTheDocument()
})
comment created time in 2 months
Pull request review commentbl00mber/react-phone-input-2
fix https://github.com/bl00mber/react-phone-input-2/issues/231
class PhoneInput extends React.Component { if (value.slice(0, updatedInput.length) !== updatedInput) return; } - if (value === prefix) return this.setState({ formattedNumber: '' });+ if (value === prefix) {+ // we should handle change when we delete the last digit+ if (onChange) this.props.onChange('', this.getCountryData(), e, '');
I guess, it's better to use desctructured onChange here if you check it in condtion
if (onChange) onChange('', this.getCountryData(), e, '');
It would be even better with optional chaining, but I'm not sure that this feature is enabled here.
onChange?.('', this.getCountryData(), e, '');
comment created time in 2 months
PR opened lawinsider/react-phone-input-2
- [ ] Rebuild compiled styles after merging #4
pr created time in 2 months
create barnchlawinsider/react-phone-input-2
branch : deps/update-with-origin
created branch time in 2 months
PR opened lawinsider/react-phone-input-2
It looks like it's not possible anymore to use less import inside scss files with new sass-loader https://github.com/lawinsider/contracts/pull/1580
Because of it, I've added compiled css files to repo itself
pr created time in 2 months
push eventlawinsider/react-phone-input-2
commit sha 82e4f81dab2b20154c28cdf079663eb4ef76b405
feat: keep compiled css inside package
push time in 2 months
create barnchlawinsider/react-phone-input-2
branch : feat/keep-compiled-css-in-package
created branch time in 2 months
pull request commentjamesmfriedman/rmwc
deps: remove not used deps from externals
Thanks for proving my suggestion.
I was clearing my package.json from @material/x packages (other team-mate added them for some reason a long ago). I've deleted everything except those two deps.
So, this PR is kind of 'Is it safe to delete them in my current project which uses [email protected]?'
But when I tried to search those entries in the source code, I found only those entries. I've decided to make this PR to make sure it's safe to delete them and not to confuse other devs when they face a similar question.
comment created time in 3 months
PR opened jamesmfriedman/rmwc
It looks like there are 2 deprecated package entries that aren't used anymore.
Is it safe to delete them?
pr created time in 3 months
create barnchpahan35/rmwc
branch : deps/remove-unused-packages-from-externals
created branch time in 3 months
pull request commentG-Rath/restart-eslint-action-plugin
feat: relax allowed IDE versions
There https://github.com/JetBrains/gradle-intellij-plugin#building-properties is some doc for params.
However, I found it in some other repo with a similar commit message.
comment created time in 3 months
PR opened G-Rath/restart-eslint-action-plugin
I'm using EAP releases for JetBrains IDEs.
Because of the strict version restraints, I can't install this plugin there

As I remember, I added the proposed line to my plugin to relax allowed versions here https://github.com/pahan35/developers-macro-idea-plugin/commit/e0a00d051f04b9a9acdc704c8cb0cc12b96adcec
pr created time in 3 months
push eventpahan35/restart-eslint-action-plugin
commit sha 475eac4e9a5dca750cd4a85be7b52668dcf7e93f
feat: define supported versions via idea-version
push time in 3 months
push eventpahan35/restart-eslint-action-plugin
commit sha 7152dd8fbf62071a997d645f440b82eff975ec02
feat: relax allowed IDE versions
push time in 3 months
fork pahan35/restart-eslint-action-plugin
IntelliJ plugin that lets you restart the ESLint service
https://plugins.jetbrains.com/plugin/14119-eslint-restart-service-action
fork in 3 months
startedJetBrains/intellij-platform-plugin-template
started time in 3 months
issue commentbenmosher/eslint-plugin-import
bug: TypeError: Cannot read property 'get' of undefined
Originally reported problem with creating a new file also is easily reproducible in VS Code
comment created time in 3 months
issue commentbenmosher/eslint-plugin-import
bug: TypeError: Cannot read property 'get' of undefined
There is also a problem with Visual Studio Code
However, it's less critical since it doesn't lead to problems with other rules.
comment created time in 3 months
issue openedbenmosher/eslint-plugin-import
bug: TypeError: Cannot read property 'get' of undefined
Originally discovered at https://youtrack.jetbrains.com/issue/WEB-45210
How to reproduce?
- Take the repo https://github.com/pahan35/web-ui-boilerplate
- Add new component into
/src/Components/with any code with exports. I used the next one with extra space before braces
import React from 'react'
export default function NewComponent () {
return 'I am new component'
}
What is the expected result
I expect to see the warning from eslint about extra space, etc

What happened instead?
Eslint fails completely for the whole file with error
TypeError: Cannot read property 'get' of undefined
Occurred while linting /Users/p35/PycharmProjects/report-from-prs-web-ui/src/NewComponent.js:3
at checkUsage (/Users/p35/PycharmProjects/report-from-prs-web-ui/node_modules/eslint-plugin-import/lib/rules/no-unused-modules.js:517:33)
at ExportDefaultDeclaration (/Users/p35/PycharmProjects/report-from-prs-web-ui/node_modules/eslint-plugin-import/lib/rules/no-unused-modules.js:895:9)
at /Users/p35/PycharmProjects/report-from-prs-web-ui/node_modules/eslint/lib/linter/safe-emitter.js:45:58
at Array.forEach (<anonymous>)
at Object.emit (/Users/p35/PycharmProjects/report-from-prs-web-ui/node_modules/eslint/lib/linter/safe-emitter.js:45:38)
at NodeEventGenerator.applySelector (/Users/p35/PycharmProjects/report-from-prs-web-ui/node_modules/eslint/lib/linter/node-event-generator.js:254:26)
at NodeEventGenerator.applySelectors (/Users/p35/PycharmProjects/report-from-prs-web-ui/node_modules/eslint/lib/linter/node-event-generator.js:283:22)
at NodeEventGenerator.enterNode (/Users/p35/PycharmProjects/report-from-prs-web-ui/node_modules/eslint/lib/linter/node-event-generator.js:297:14)
at CodePathAnalyzer.enterNode (/Users/p35/PycharmProjects/report-from-prs-web-ui/node_modules/eslint/lib/linter/code-path-analysis/code-path-analyzer.js:635:23)
at /Users/p35/PycharmProjects/report-from-prs-web-ui/node_modules/eslint/lib/linter/linter.js:949:32
Process finished with exit code -1
This bug is really critical for me. However, dev from JetBrain's side said that there is something wrong from the plugin side. Please fix it from your side or give advice on how to fix it
created time in 3 months