Skip to content

Commit

Permalink
- client: Match client IP strictly: Merge pull request #620 in DNS/ad…
Browse files Browse the repository at this point in the history
…guard-home from fix/1687 to master

Close #1687

Squashed commit of the following:

commit 5287da0
Merge: c6b50c7 83b9b70
Author: ArtemBaskal <[email protected]>
Date:   Fri May 29 12:47:23 2020 +0300

    Merge branch 'master' into fix/1687

commit c6b50c7
Author: ArtemBaskal <[email protected]>
Date:   Fri May 29 12:42:12 2020 +0300

    minor

commit dab9fa9
Author: ArtemBaskal <[email protected]>
Date:   Thu May 28 16:56:08 2020 +0300

    Add support for exact matching of long and short ipv6 notations, add tests

commit e72e86c
Author: ArtemBaskal <[email protected]>
Date:   Thu May 28 13:57:22 2020 +0300

    Update helper, write tests

commit 92f4c34
Author: ArtemBaskal <[email protected]>
Date:   Wed May 27 18:35:05 2020 +0300

    Make variable names more expressive

commit 3d38f21
Author: ArtemBaskal <[email protected]>
Date:   Wed May 27 17:09:08 2020 +0300

    Add ipv6 cidr support

commit 7db0a2f
Author: ArtemBaskal <[email protected]>
Date:   Tue May 26 12:48:57 2020 +0300

    Minor

commit 65e87f3
Author: ArtemBaskal <[email protected]>
Date:   Tue May 26 12:46:30 2020 +0300

    Add breaks between helpers

commit 3f38bdf
Author: ArtemBaskal <[email protected]>
Date:   Thu May 21 20:17:27 2020 +0300

    - client: Match client IP strictly
  • Loading branch information
ArtemBaskal committed May 29, 2020
1 parent 83b9b70 commit 72f253f
Show file tree
Hide file tree
Showing 11 changed files with 8,406 additions and 4,326 deletions.
16 changes: 0 additions & 16 deletions client/.babelrc

This file was deleted.

14 changes: 14 additions & 0 deletions client/babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
module.exports = (api) => {
api.cache(false);
return {
presets: [
'@babel/preset-env',
'@babel/preset-react',
],
plugins: [
'@babel/plugin-proposal-class-properties',
'@babel/plugin-transform-runtime',
'@babel/plugin-proposal-object-rest-spread',
],
};
};
5 changes: 5 additions & 0 deletions client/jest.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module.exports = {
transform: {
'^.+\\.jsx?$': 'babel-jest',
},
};
Loading

0 comments on commit 72f253f

Please sign in to comment.