summaryrefslogtreecommitdiffhomepage
path: root/vhosts
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2025-01-26 12:50:40 +0900
committernsfisis <nsfisis@gmail.com>2025-01-26 12:50:40 +0900
commitad87bf61edab31921a3ce216225a7a33e2112746 (patch)
tree07686e7dc556b7eabf5c81b5bc799f270cb8bfe3 /vhosts
parent0fa75a6237a58d22b63dfa1c6ff1742c69a3f322 (diff)
downloadnsfisis.dev-ad87bf61edab31921a3ce216225a7a33e2112746.tar.gz
nsfisis.dev-ad87bf61edab31921a3ce216225a7a33e2112746.tar.zst
nsfisis.dev-ad87bf61edab31921a3ce216225a7a33e2112746.zip
feat(blog/content): new post /posts/2025-01-26/yaml-breaking-changes-between-v1-1-and-v1-2/
Diffstat (limited to 'vhosts')
-rw-r--r--vhosts/blog/content/posts/2025-01-26/yaml-breaking-changes-between-v1-1-and-v1-2.ndoc87
-rw-r--r--vhosts/blog/nuldoc-src/renderers/html.ts2
-rw-r--r--vhosts/blog/nuldoc.toml1
-rw-r--r--vhosts/blog/public/atom.xml10
-rw-r--r--vhosts/blog/public/posts/2025-01-26/yaml-breaking-changes-between-v1-1-and-v1-2/index.html141
-rw-r--r--vhosts/blog/public/posts/atom.xml10
-rw-r--r--vhosts/blog/public/posts/index.html15
-rw-r--r--vhosts/blog/public/tags/index.html10
-rw-r--r--vhosts/blog/public/tags/yaml/atom.xml19
-rw-r--r--vhosts/blog/public/tags/yaml/index.html66
10 files changed, 359 insertions, 2 deletions
diff --git a/vhosts/blog/content/posts/2025-01-26/yaml-breaking-changes-between-v1-1-and-v1-2.ndoc b/vhosts/blog/content/posts/2025-01-26/yaml-breaking-changes-between-v1-1-and-v1-2.ndoc
new file mode 100644
index 00000000..cb8add2c
--- /dev/null
+++ b/vhosts/blog/content/posts/2025-01-26/yaml-breaking-changes-between-v1-1-and-v1-2.ndoc
@@ -0,0 +1,87 @@
+---
+[article]
+uuid = "da2a0cec-74b3-4c5e-b2a2-47fe79ef49f9"
+title = "【YAML】YAML 1.1 と YAML 1.2 の主な破壊的変更"
+description = "データ記述言語 YAML におけるバージョン 1.1 と 1.2 の主な破壊的変更をまとめた。"
+tags = [
+ "yaml",
+]
+
+[[article.revisions]]
+date = "2021-06-30"
+remark = "デジタルサーカス株式会社の社内記事として公開"
+isInternal = true
+
+[[article.revisions]]
+date = "2025-01-26"
+remark = "ブログ記事として一般公開"
+---
+<article>
+ <note>
+ この記事は、2021-06-30 に<a href="https://www.dgcircus.com/">デジタルサーカス株式会社</a> の社内 Qiita Team に公開された記事をベースに、加筆修正して一般公開したものです。
+ </note>
+ <section id="intro">
+ <h>はじめに</h>
+ <p>
+ データ記述言語の一つ YAML には 1.0、1.1、1.2 のバージョンがある。
+ これらのうち、1.1 と 1.2 の間には無視できない非互換の変更が多く、1.2 に対応していないライブラリもある (Ruby 同梱の <code>yaml</code> など)。
+ この記事では、YAML 1.1 と YAML 1.2 の主な破壊的変更を紹介する (影響範囲が広いものを抜粋しており、すべての非互換を網羅してはいない)。
+ </p>
+ <p>
+ 参照した仕様書はこちら: https://yaml.org/spec/1.2.2/ext/changes/
+ </p>
+ </section>
+ <section id="breaking-changes">
+ <h>主な破壊的変更</h>
+ <section id="breaking-changes--boolean-literals">
+ <h>Boolean としてパースされるトークンが <code>true</code> / <code>false</code> とその亜種のみに</h>
+ <p>
+ この変更の影響が最も大きいと思われる。
+ YAML 1.1 では、boolean 値のリテラルとして <code>true</code>、<code>false</code> のほか <code>yes</code>、<code>no</code>、<code>y</code>、<code>n</code>、<code>on</code>、<code>off</code>、それらの大文字バージョンなどが認められていた。
+ YAML 1.2 では、<code>true</code> と <code>false</code>、それらの大文字バージョン (<code>True</code>、<code>TRUE</code>、<code>False</code>、<code>FALSE</code>) のみが boolean としてパースされるようになった。
+ </p>
+ </section>
+ <section id="breaking-changes--octal-literals">
+ <h>八進数リテラルには <code>0o</code> が必須に</h>
+ <p>
+ C 言語などでは、<code>0</code> から始まる数字の列を八進数としてパースする。
+ YAML 1.1 もこれに準じていたが、1.2 からは <code>0o</code> のプレフィクスが必須となった ("o" は "octal" の "o")。
+ プログラミング言語では、Python や Haskell、Swift、Rust などがこの記法を採用している。
+ </p>
+ </section>
+ <section id="breaking-changes--merging">
+ <h><code>&lt;&lt;</code> によるマージが不可能に</h>
+ <p>
+ YAML 1.1 では、<code>&lt;&lt;</code> という文字列をキーに指定することで、マップをマージすることができた。
+ </p>
+ <codeblock language="yaml">
+ <![CDATA[
+ x: &base
+ a: 123
+ # => { "x": { "a": 123 } }
+
+ y:
+ <<: *base
+ b: 456
+ # => { "y": { "a": 123, "b": 456 } }
+ ]]>
+ </codeblock>
+ <p>
+ 1.2 からはこれができなくなる。
+ </p>
+ </section>
+ <section id="breaking-changes--number-separator">
+ <h>数字を <code>_</code> で区切るのが禁止に</h>
+ <p>
+ <code>1234567</code> を <code>1_234_567</code> と書けなくなった。
+ </p>
+ </section>
+ </section>
+ <section id="outro">
+ <h>おわりに</h>
+ <p>
+ 全体的に、<i>There's more than one way to do it.</i> から <i>There should be one - and preferably only one - obvious way to do it.</i> へ移行しているように思われる。
+ データ記述言語としては望ましい方向性ではないかと感じる。
+ </p>
+ </section>
+</article>
diff --git a/vhosts/blog/nuldoc-src/renderers/html.ts b/vhosts/blog/nuldoc-src/renderers/html.ts
index f26a3f08..4ebc342e 100644
--- a/vhosts/blog/nuldoc-src/renderers/html.ts
+++ b/vhosts/blog/nuldoc-src/renderers/html.ts
@@ -59,6 +59,8 @@ function getDtd(name: string): Dtd {
return { type: "block" };
case "html":
return { type: "block" };
+ case "i":
+ return { type: "inline" };
case "img":
return { type: "block" };
case "li":
diff --git a/vhosts/blog/nuldoc.toml b/vhosts/blog/nuldoc.toml
index e7852c7d..f0821378 100644
--- a/vhosts/blog/nuldoc.toml
+++ b/vhosts/blog/nuldoc.toml
@@ -47,5 +47,6 @@ vim = "Vim"
wasm = "WebAssembly"
wireguard = "WireGuard"
ya8 = "Ya8"
+yaml = "YAML"
yapc = "YAPC"
zsh = "Zsh"
diff --git a/vhosts/blog/public/atom.xml b/vhosts/blog/public/atom.xml
index 1d15fca5..35b1b316 100644
--- a/vhosts/blog/public/atom.xml
+++ b/vhosts/blog/public/atom.xml
@@ -7,7 +7,15 @@
<author>
<name>nsfisis</name>
</author>
- <updated>2025-01-11T00:00:00+09:00</updated>
+ <updated>2025-01-26T00:00:00+09:00</updated>
+ <entry>
+ <id>urn:uuid:da2a0cec-74b3-4c5e-b2a2-47fe79ef49f9</id>
+ <link rel="alternate" href="https://blog.nsfisis.dev/posts/2025-01-26/yaml-breaking-changes-between-v1-1-and-v1-2/"></link>
+ <title>【YAML】YAML 1.1 と YAML 1.2 の主な破壊的変更</title>
+ <summary>データ記述言語 YAML におけるバージョン 1.1 と 1.2 の主な破壊的変更をまとめた。</summary>
+ <published>2025-01-26T00:00:00+09:00</published>
+ <updated>2025-01-26T00:00:00+09:00</updated>
+ </entry>
<entry>
<id>urn:uuid:ce8f20e8-c79f-48f8-982d-53edd4d20483</id>
<link rel="alternate" href="https://blog.nsfisis.dev/posts/2025-01-08/phperkaigi-2023-tokens-q1/"></link>
diff --git a/vhosts/blog/public/posts/2025-01-26/yaml-breaking-changes-between-v1-1-and-v1-2/index.html b/vhosts/blog/public/posts/2025-01-26/yaml-breaking-changes-between-v1-1-and-v1-2/index.html
new file mode 100644
index 00000000..19161543
--- /dev/null
+++ b/vhosts/blog/public/posts/2025-01-26/yaml-breaking-changes-between-v1-1-and-v1-2/index.html
@@ -0,0 +1,141 @@
+<!DOCTYPE html>
+<html lang="ja-JP">
+ <head>
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <meta name="author" content="nsfisis">
+ <meta name="copyright" content="&copy; 2025 nsfisis">
+ <meta name="description" content="データ記述言語 YAML におけるバージョン 1.1 と 1.2 の主な破壊的変更をまとめた。">
+ <meta name="keywords" content="YAML">
+ <meta property="og:type" content="article">
+ <meta property="og:title" content="【YAML】YAML 1.1 と YAML 1.2 の主な破壊的変更|REPL: Rest-Eat-Program Loop">
+ <meta property="og:description" content="データ記述言語 YAML におけるバージョン 1.1 と 1.2 の主な破壊的変更をまとめた。">
+ <meta property="og:site_name" content="REPL: Rest-Eat-Program Loop">
+ <meta property="og:locale" content="ja_JP">
+ <link rel="icon" type="image/svg+xml" href="/favicon.svg">
+ <title>【YAML】YAML 1.1 と YAML 1.2 の主な破壊的変更|REPL: Rest-Eat-Program Loop</title>
+ <link rel="stylesheet" href="/style.css?h=79020a898c7052f79b32e90376a4497d">
+ <link rel="stylesheet" href="/hl.css?h=340e65ffd5c17713efc9107c06304f7b">
+ </head>
+ <body class="single">
+ <header class="header">
+ <div class="site-logo">
+ <a href="/">REPL: Rest-Eat-Program Loop</a>
+ </div>
+ <nav class="nav">
+ <ul>
+ <li>
+ <a href="/about/">About</a>
+ </li>
+ <li>
+ <a href="/posts/">Posts</a>
+ </li>
+ <li>
+ <a href="/slides/">Slides</a>
+ </li>
+ <li>
+ <a href="/tags/">Tags</a>
+ </li>
+ </ul>
+ </nav>
+ </header>
+ <main class="main">
+ <article class="post-single">
+ <header class="post-header">
+ <h1 class="post-title">【YAML】YAML 1.1 と YAML 1.2 の主な破壊的変更</h1>
+ <ul class="post-tags">
+ <li class="tag">
+ <a href="/tags/yaml/">YAML</a>
+ </li>
+ </ul>
+ </header>
+ <div class="post-content">
+ <section>
+ <h2 id="changelog">更新履歴</h2>
+ <ol>
+ <li class="revision">
+ <time datetime="2021-06-30">2021-06-30</time>: デジタルサーカス株式会社の社内記事として公開
+ </li>
+ <li class="revision">
+ <time datetime="2025-01-26">2025-01-26</time>: ブログ記事として一般公開
+ </li>
+ </ol>
+ </section>
+ <div class="admonition">
+ <div class="admonition-label">
+ NOTE
+ </div>
+ <div class="admonition-content">
+ この記事は、2021-06-30 に<a href="https://www.dgcircus.com/">デジタルサーカス株式会社</a> の社内 Qiita Team に公開された記事をベースに、加筆修正して一般公開したものです。
+ </div>
+ </div>
+
+ <section id="section--intro">
+ <h2><a href="#section--intro">はじめに</a></h2>
+ <p>
+ データ記述言語の一つ YAML には 1.0、1.1、1.2 のバージョンがある。 これらのうち、1.1 と 1.2 の間には無視できない非互換の変更が多く、1.2 に対応していないライブラリもある (Ruby 同梱の <code>yaml</code> など)。 この記事では、YAML 1.1 と YAML 1.2 の主な破壊的変更を紹介する (影響範囲が広いものを抜粋しており、すべての非互換を網羅してはいない)。
+ </p>
+
+ <p>
+ 参照した仕様書はこちら: <a href="https://yaml.org/spec/1.2.2/ext/changes/">https://yaml.org/spec/1.2.2/ext/changes/</a>
+ </p>
+ </section>
+
+ <section id="section--breaking-changes">
+ <h2><a href="#section--breaking-changes">主な破壊的変更</a></h2>
+ <section id="section--breaking-changes--boolean-literals">
+ <h3><a href="#section--breaking-changes--boolean-literals">Boolean としてパースされるトークンが <code>true</code> / <code>false</code> とその亜種のみに</a></h3>
+ <p>
+ この変更の影響が最も大きいと思われる。 YAML 1.1 では、boolean 値のリテラルとして <code>true</code>、<code>false</code> のほか <code>yes</code>、<code>no</code>、<code>y</code>、<code>n</code>、<code>on</code>、<code>off</code>、それらの大文字バージョンなどが認められていた。 YAML 1.2 では、<code>true</code> と <code>false</code>、それらの大文字バージョン (<code>True</code>、<code>TRUE</code>、<code>False</code>、<code>FALSE</code>) のみが boolean としてパースされるようになった。
+ </p>
+ </section>
+
+ <section id="section--breaking-changes--octal-literals">
+ <h3><a href="#section--breaking-changes--octal-literals">八進数リテラルには <code>0o</code> が必須に</a></h3>
+ <p>
+ C 言語などでは、<code>0</code> から始まる数字の列を八進数としてパースする。 YAML 1.1 もこれに準じていたが、1.2 からは <code>0o</code> のプレフィクスが必須となった (&quot;o&quot; は &quot;octal&quot; の &quot;o&quot;)。 プログラミング言語では、Python や Haskell、Swift、Rust などがこの記法を採用している。
+ </p>
+ </section>
+
+ <section id="section--breaking-changes--merging">
+ <h3><a href="#section--breaking-changes--merging"><code>&lt;&lt;</code> によるマージが不可能に</a></h3>
+ <p>
+ YAML 1.1 では、<code>&lt;&lt;</code> という文字列をキーに指定することで、マップをマージすることができた。
+ </p>
+
+ <pre class="highlight" language="yaml"><code class="highlight"><span class="hljs-attr">x:</span> <span class="hljs-meta">&amp;base</span>
+ <span class="hljs-attr">a:</span> <span class="hljs-number">123</span>
+<span class="hljs-comment"># =&gt; { &quot;x&quot;: { &quot;a&quot;: 123 } }</span>
+
+<span class="hljs-attr">y:</span>
+ <span class="hljs-string">&lt;&lt;:</span> <span class="hljs-meta">*base</span>
+ <span class="hljs-attr">b:</span> <span class="hljs-number">456</span>
+<span class="hljs-comment"># =&gt; { &quot;y&quot;: { &quot;a&quot;: 123, &quot;b&quot;: 456 } }</span></code></pre>
+
+ <p>
+ 1.2 からはこれができなくなる。
+ </p>
+ </section>
+
+ <section id="section--breaking-changes--number-separator">
+ <h3><a href="#section--breaking-changes--number-separator">数字を <code>_</code> で区切るのが禁止に</a></h3>
+ <p>
+ <code>1234567</code> を <code>1_234_567</code> と書けなくなった。
+ </p>
+ </section>
+ </section>
+
+ <section id="section--outro">
+ <h2><a href="#section--outro">おわりに</a></h2>
+ <p>
+ 全体的に、<i>There&apos;s more than one way to do it.</i> から <i>There should be one - and preferably only one - obvious way to do it.</i> へ移行しているように思われる。 データ記述言語としては望ましい方向性ではないかと感じる。
+ </p>
+ </section>
+ </div>
+ </article>
+ </main>
+ <footer class="footer">
+ &copy; 2021 nsfisis
+ </footer>
+ </body>
+</html>
diff --git a/vhosts/blog/public/posts/atom.xml b/vhosts/blog/public/posts/atom.xml
index c6d7c256..ea9fa0d7 100644
--- a/vhosts/blog/public/posts/atom.xml
+++ b/vhosts/blog/public/posts/atom.xml
@@ -7,7 +7,15 @@
<author>
<name>nsfisis</name>
</author>
- <updated>2025-01-11T00:00:00+09:00</updated>
+ <updated>2025-01-26T00:00:00+09:00</updated>
+ <entry>
+ <id>urn:uuid:da2a0cec-74b3-4c5e-b2a2-47fe79ef49f9</id>
+ <link rel="alternate" href="https://blog.nsfisis.dev/posts/2025-01-26/yaml-breaking-changes-between-v1-1-and-v1-2/"></link>
+ <title>【YAML】YAML 1.1 と YAML 1.2 の主な破壊的変更</title>
+ <summary>データ記述言語 YAML におけるバージョン 1.1 と 1.2 の主な破壊的変更をまとめた。</summary>
+ <published>2025-01-26T00:00:00+09:00</published>
+ <updated>2025-01-26T00:00:00+09:00</updated>
+ </entry>
<entry>
<id>urn:uuid:ce8f20e8-c79f-48f8-982d-53edd4d20483</id>
<link rel="alternate" href="https://blog.nsfisis.dev/posts/2025-01-08/phperkaigi-2023-tokens-q1/"></link>
diff --git a/vhosts/blog/public/posts/index.html b/vhosts/blog/public/posts/index.html
index 7155c3a6..f0c11b13 100644
--- a/vhosts/blog/public/posts/index.html
+++ b/vhosts/blog/public/posts/index.html
@@ -43,6 +43,21 @@
<h1>投稿一覧</h1>
</header>
<article class="post-entry">
+ <a href="/posts/2025-01-26/yaml-breaking-changes-between-v1-1-and-v1-2/">
+ <header class="entry-header">
+ <h2>【YAML】YAML 1.1 と YAML 1.2 の主な破壊的変更</h2>
+ </header>
+ <section class="entry-content">
+ <p>
+ データ記述言語 YAML におけるバージョン 1.1 と 1.2 の主な破壊的変更をまとめた。
+ </p>
+ </section>
+ <footer class="entry-footer">
+ <time datetime="2025-01-26">2025-01-26</time> 投稿
+ </footer>
+ </a>
+ </article>
+ <article class="post-entry">
<a href="/posts/2025-01-08/phperkaigi-2023-tokens-q1/">
<header class="entry-header">
<h2>PHPerKaigi 2023 トークン問題解説 (1/5)</h2>
diff --git a/vhosts/blog/public/tags/index.html b/vhosts/blog/public/tags/index.html
index 68a5b521..a6d0b29a 100644
--- a/vhosts/blog/public/tags/index.html
+++ b/vhosts/blog/public/tags/index.html
@@ -382,6 +382,16 @@
</a>
</article>
<article class="post-entry">
+ <a href="/tags/yaml/">
+ <header class="entry-header">
+ <h2>YAML</h2>
+ </header>
+ <footer class="entry-footer">
+ 1件の記事
+ </footer>
+ </a>
+ </article>
+ <article class="post-entry">
<a href="/tags/yapc/">
<header class="entry-header">
<h2>YAPC</h2>
diff --git a/vhosts/blog/public/tags/yaml/atom.xml b/vhosts/blog/public/tags/yaml/atom.xml
new file mode 100644
index 00000000..0bc35fa7
--- /dev/null
+++ b/vhosts/blog/public/tags/yaml/atom.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+<feed xmlns="http://www.w3.org/2005/Atom">
+ <id>tag:blog.nsfisis.dev,2021:tag-yaml</id>
+ <title>タグ「YAML」一覧|REPL: Rest-Eat-Program Loop</title>
+ <link rel="alternate" href="https://blog.nsfisis.dev/tags/yaml/"></link>
+ <link rel="self" href="https://blog.nsfisis.dev/tags/yaml/atom.xml"></link>
+ <author>
+ <name>nsfisis</name>
+ </author>
+ <updated>2025-01-26T00:00:00+09:00</updated>
+ <entry>
+ <id>urn:uuid:da2a0cec-74b3-4c5e-b2a2-47fe79ef49f9</id>
+ <link rel="alternate" href="https://blog.nsfisis.dev/posts/2025-01-26/yaml-breaking-changes-between-v1-1-and-v1-2/"></link>
+ <title>【YAML】YAML 1.1 と YAML 1.2 の主な破壊的変更</title>
+ <summary>データ記述言語 YAML におけるバージョン 1.1 と 1.2 の主な破壊的変更をまとめた。</summary>
+ <published>2025-01-26T00:00:00+09:00</published>
+ <updated>2025-01-26T00:00:00+09:00</updated>
+ </entry>
+</feed>
diff --git a/vhosts/blog/public/tags/yaml/index.html b/vhosts/blog/public/tags/yaml/index.html
new file mode 100644
index 00000000..b3b14153
--- /dev/null
+++ b/vhosts/blog/public/tags/yaml/index.html
@@ -0,0 +1,66 @@
+<!DOCTYPE html>
+<html lang="ja-JP">
+ <head>
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <meta name="author" content="nsfisis">
+ <meta name="copyright" content="&copy; 2025 nsfisis">
+ <meta name="description" content="タグ「YAML」のついた記事またはスライドの一覧">
+ <meta name="keywords" content="YAML">
+ <meta property="og:type" content="article">
+ <meta property="og:title" content="タグ「YAML」一覧|REPL: Rest-Eat-Program Loop">
+ <meta property="og:description" content="タグ「YAML」のついた記事またはスライドの一覧">
+ <meta property="og:site_name" content="REPL: Rest-Eat-Program Loop">
+ <meta property="og:locale" content="ja_JP">
+ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/yaml/atom.xml">
+ <link rel="icon" type="image/svg+xml" href="/favicon.svg">
+ <title>タグ「YAML」一覧|REPL: Rest-Eat-Program Loop</title>
+ <link rel="stylesheet" href="/style.css?h=79020a898c7052f79b32e90376a4497d">
+ </head>
+ <body class="list">
+ <header class="header">
+ <div class="site-logo">
+ <a href="/">REPL: Rest-Eat-Program Loop</a>
+ </div>
+ <nav class="nav">
+ <ul>
+ <li>
+ <a href="/about/">About</a>
+ </li>
+ <li>
+ <a href="/posts/">Posts</a>
+ </li>
+ <li>
+ <a href="/slides/">Slides</a>
+ </li>
+ <li>
+ <a href="/tags/">Tags</a>
+ </li>
+ </ul>
+ </nav>
+ </header>
+ <main class="main">
+ <header class="page-header">
+ <h1>タグ「YAML」一覧</h1>
+ </header>
+ <article class="post-entry">
+ <a href="/posts/2025-01-26/yaml-breaking-changes-between-v1-1-and-v1-2/">
+ <header class="entry-header">
+ <h2>【YAML】YAML 1.1 と YAML 1.2 の主な破壊的変更</h2>
+ </header>
+ <section class="entry-content">
+ <p>
+ データ記述言語 YAML におけるバージョン 1.1 と 1.2 の主な破壊的変更をまとめた。
+ </p>
+ </section>
+ <footer class="entry-footer">
+ <time datetime="2025-01-26">2025-01-26</time> 投稿
+ </footer>
+ </a>
+ </article>
+ </main>
+ <footer class="footer">
+ &copy; 2021 nsfisis
+ </footer>
+ </body>
+</html>