@@ -46,9 +46,10 @@ describe("vectorize help", () => {
46
46
-v, --version Show version number [boolean]
47
47
48
48
--------------------
49
- 📣 Vectorize is currently in open beta
49
+ 📣 Vectorize is now Generally Available.
50
50
📣 Please use the '--deprecated-v1' flag to create, get, list, delete and insert vectors into legacy Vectorize indexes
51
- 📣 See the Vectorize docs for how to get started and known issues: https://developers.cloudflare.com/vectorize
51
+ 📣 Creation of legacy Vectorize indexes will be blocked by December 2024. Other operations will continue to function
52
+ 📣 See the Vectorize docs to get started: https://developers.cloudflare.com/vectorize
52
53
📣 Please report any bugs to https://github.com/cloudflare/workers-sdk/issues/new/choose
53
54
📣 To give feedback, visit https://discord.cloudflare.com/
54
55
--------------------"
@@ -94,9 +95,10 @@ describe("vectorize help", () => {
94
95
-v, --version Show version number [boolean]
95
96
96
97
--------------------
97
- 📣 Vectorize is currently in open beta
98
+ 📣 Vectorize is now Generally Available.
98
99
📣 Please use the '--deprecated-v1' flag to create, get, list, delete and insert vectors into legacy Vectorize indexes
99
- 📣 See the Vectorize docs for how to get started and known issues: https://developers.cloudflare.com/vectorize
100
+ 📣 Creation of legacy Vectorize indexes will be blocked by December 2024. Other operations will continue to function
101
+ 📣 See the Vectorize docs to get started: https://developers.cloudflare.com/vectorize
100
102
📣 Please report any bugs to https://github.com/cloudflare/workers-sdk/issues/new/choose
101
103
📣 To give feedback, visit https://discord.cloudflare.com/
102
104
--------------------"
@@ -134,9 +136,10 @@ describe("vectorize help", () => {
134
136
--deprecated-v1 Fetch a deprecated V1 Vectorize index. This must be enabled if the index was created with V1 option. [boolean] [default: false]
135
137
136
138
--------------------
137
- 📣 Vectorize is currently in open beta
139
+ 📣 Vectorize is now Generally Available.
138
140
📣 Please use the '--deprecated-v1' flag to create, get, list, delete and insert vectors into legacy Vectorize indexes
139
- 📣 See the Vectorize docs for how to get started and known issues: https://developers.cloudflare.com/vectorize
141
+ 📣 Creation of legacy Vectorize indexes will be blocked by December 2024. Other operations will continue to function
142
+ 📣 See the Vectorize docs to get started: https://developers.cloudflare.com/vectorize
140
143
📣 Please report any bugs to https://github.com/cloudflare/workers-sdk/issues/new/choose
141
144
📣 To give feedback, visit https://discord.cloudflare.com/
142
145
--------------------"
@@ -186,9 +189,10 @@ describe("vectorize help", () => {
186
189
Filter the query results.
187
190
188
191
--------------------
189
- 📣 Vectorize is currently in open beta
192
+ 📣 Vectorize is now Generally Available.
190
193
📣 Please use the '--deprecated-v1' flag to create, get, list, delete and insert vectors into legacy Vectorize indexes
191
- 📣 See the Vectorize docs for how to get started and known issues: https://developers.cloudflare.com/vectorize
194
+ 📣 Creation of legacy Vectorize indexes will be blocked by December 2024. Other operations will continue to function
195
+ 📣 See the Vectorize docs to get started: https://developers.cloudflare.com/vectorize
192
196
📣 Please report any bugs to https://github.com/cloudflare/workers-sdk/issues/new/choose
193
197
📣 To give feedback, visit https://discord.cloudflare.com/
194
198
--------------------"
@@ -221,6 +225,11 @@ describe("vectorize commands", () => {
221
225
await runWrangler (
222
226
"vectorize create some-index --dimensions=768 --metric=cosine --deprecated-v1=true"
223
227
) ;
228
+ expect ( std . warn ) . toMatchInlineSnapshot ( `
229
+ "[33m▲ [43;33m[[43;30mWARNING[43;33m][0m [1mCreation of legacy Vectorize indexes will be blocked by December 2024[0m
230
+
231
+ "
232
+ ` ) ;
224
233
expect ( std . out ) . toMatchInlineSnapshot ( `
225
234
"🚧 Creating index: 'some-index'
226
235
✅ Successfully created a new Vectorize index: 'test-index'
0 commit comments