-
-
Notifications
You must be signed in to change notification settings - Fork 71
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
2022-03-01のJS: Redux Toolkit 1.8.0、Node.js 17.6.0、CSS Cascade Layers #964
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
azu
changed the title
2022-03-01の
2022-03-01のJS: Redux ToolKit 1.8.0、Node.js 17.6.0、 CSS Cascade Layers
Mar 1, 2022
azu
changed the title
2022-03-01のJS: Redux ToolKit 1.8.0、Node.js 17.6.0、 CSS Cascade Layers
2022-03-01のJS: Redux ToolKit 1.8.0、Node.js 17.6.0、CSS Cascade Layers
Mar 1, 2022
….6.0-css-cascade-layers.md
….6.0-css-cascade-layers.md
azu
changed the title
2022-03-01のJS: Redux ToolKit 1.8.0、Node.js 17.6.0、CSS Cascade Layers
2022-03-01のJS: Redux Toolkit 1.8.0、Node.js 17.6.0、CSS Cascade Layers
Mar 1, 2022
….6.0-css-cascade-layers.md
….6.0-css-cascade-layers.md
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Redux Toolkit 1.8.0がリリースされました。
1.8.0では、新しい非同期Middlewareとして
createListenerMiddleware
が追加されています。createListenerMiddleware
はredux-sagaやredux-observableなど同じく非同期処理を扱うためのMiddlewareです。シンプルな
dispatch
やgetState
などのAPIや、redux-sagaをインスパイアしたtake
やTemporalをインスパイアしたcondition
など複雑なタスクを扱うAPIも持っています。次の動画で、この新しい
createListenerMiddleware
がどのように作られたのかを紹介しています。Node.js 17.6.0がリリースされました。
Node v17.5.0でStreamに対して現在Stage 2のECMAScript ProposalであるIterator Helpersが実装されていました。
しかし、仕様に準拠した実装をした場合にmongooseなどのモジュールが動かなくなるリグレッションが発生したため、仕様への準拠を一部revertしています。
具体的にはIterator Helperの仕様では、
map
などのメソッドは{ [[Writable]]: false, [[Enumerable]]: false, [[Configurable]]: false }
で実装されることなっています。この場合、次のようにStreamの
prototype.map
を上書きしようとする、Writable
がfalse
であるため、例外が発生してできません。mongooseなどで、このような代入が存在したため、
[[Writable]]: false
を[[Writable]]: true
にする変更(revert)がNode.js 17.6.0に含まれています。(BREAKING CHANGEとなってしまったため)A Complete Guide to CSS Cascade Layers | CSS-Tricks - CSS-Tricksという記事では、Chrome/Edge 99+、Firefox 97+、Safari Technology Preview 133で実装されている CSS Cascade Layers について紹介されています。
CSSでは、UA、
!important
、詳細度などによってどのスタイルが当たるかのCascadingの仕様があります。この仕様にCascade Layersというものが追加され、各ブラウザでの実装が進んでいます。
この記事では、Cascade Layersの基本的な使い方、Important layers、Layerの優先度、sub layerについてなど書かれています。