-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathindex.html
More file actions
925 lines (419 loc) · 28 KB
/
Copy pathindex.html
File metadata and controls
925 lines (419 loc) · 28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
<!DOCTYPE html>
<!--[if IEMobile 7 ]><html class="no-js iem7"><![endif]-->
<!--[if lt IE 9]><html class="no-js lte-ie8"><![endif]-->
<!--[if (gt IE 8)|(gt IEMobile 7)|!(IEMobile)|!(IE)]><!--><html class="no-js" lang="en"><!--<![endif]-->
<head>
<meta charset="utf-8">
<title>FW/1 - The Invisible Framework</title>
<meta name="author" content="Sean Corfield">
<meta name="description" content="The second Release Candidate of FW/1 3.1 is now available for testing. You download FW/1 3.1 RC 2 from GitHub. These are the changes since RC 1: …">
<!-- http://t.co/dKP3o1e -->
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="canonical" href="http://framework-one.github.io">
<link href="/favicon.png" rel="icon">
<link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css">
<link href="/atom.xml" rel="alternate" title="FW/1 - The Invisible Framework" type="application/atom+xml">
<script src="/javascripts/modernizr-2.0.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script>!window.jQuery && document.write(unescape('%3Cscript src="./javascripts/libs/jquery.min.js"%3E%3C/script%3E'))</script>
<script src="/javascripts/octopress.js" type="text/javascript"></script>
<!--Fonts from Google"s Web font directory at http://google.com/webfonts -->
<link href="//fonts.googleapis.com/css?family=PT+Serif:regular,italic,bold,bolditalic" rel="stylesheet" type="text/css">
<link href="//fonts.googleapis.com/css?family=PT+Sans:regular,italic,bold,bolditalic" rel="stylesheet" type="text/css">
</head>
<body >
<header role="banner"><hgroup>
<h1><a href="/">FW/1 - The Invisible Framework</a></h1>
<h2>Framework One and friends...</h2>
</hgroup>
</header>
<nav role="navigation"><ul class="subscription" data-subscription="rss">
<li><a href="/atom.xml" rel="subscribe-rss" title="subscribe via RSS">RSS</a></li>
</ul>
<form action="https://www.google.com/search" method="get">
<fieldset role="search">
<input type="hidden" name="q" value="site:framework-one.github.io" />
<input class="search" type="text" name="q" results="0" placeholder="Search"/>
</fieldset>
</form>
<ul class="main-navigation">
<li><a href="/">Blog</a></li>
<li><a href="/blog/archives">Archives</a></li>
<li><a href="/documentation">Documentation</a></li>
</ul>
</nav>
<div id="main">
<div id="content">
<div class="blog-index">
<article>
<header>
<h1 class="entry-title"><a href="/blog/2015/07/07/fw1-3-1-rc-2/">FW/1 3.1 Release Candidate 2 Available!</a></h1>
<p class="meta">
<time datetime="2015-07-07T16:40:00-07:00" pubdate data-updated="true">Jul 7<span>th</span>, 2015</time>
| <a href="/blog/2015/07/07/fw1-3-1-rc-2/#disqus_thread"
data-disqus-identifier="http://framework-one.github.io/blog/2015/07/07/fw1-3-1-rc-2/">Comments</a>
</p>
</header>
<div class="entry-content"><p>The second Release Candidate of FW/1 3.1 is now available for testing. You <a href="https://github.com/framework-one/fw1/releases/tag/v3.1-rc2">download FW/1 3.1 RC 2 from GitHub</a>.</p>
<p>These are the changes since RC 1:</p>
<ul>
<li>Major overhaul of AOP/1; intercept by CFC type; intercept by CFC name regex (Daniel Budde).</li>
<li>Routes now support regex restriction on placeholder variables (Guillaume Boivin).</li>
</ul>
<p>For a complete list of changes since 3.0:</p>
<ul>
<li><a href="https://github.com/framework-one/fw1/issues?q=is%3Aissue+is%3Aclosed+milestone%3A3.1">Issues Closed</a></li>
<li><a href="https://github.com/framework-one/fw1/pulls?q=is%3Apr+is%3Aclosed+milestone%3A3.1">Pull Requests Merged</a></li>
</ul>
<p>At this point, release 3.1 should be considered “production ready” and only critical bug fixes will be included between now and the “gold” release. It is the default download on RIAForge and will be merged to master tomorrow in preparation for the final release at the weekend.</p>
<p>As noted before, release 3.5 will follow fairly quickly after that, with a focus on language integration, bringing
automatic support for Clojure code in the Model and Controllers, as well as first class support for the Lucee Language in the Model, the Views, and the Controllers.</p>
</div>
</article>
<article>
<header>
<h1 class="entry-title"><a href="/blog/2015/06/28/fw1-3-1-rc-1/">FW/1 3.1 Release Candidate 1 Available!</a></h1>
<p class="meta">
<time datetime="2015-06-28T17:00:00-07:00" pubdate data-updated="true">Jun 28<span>th</span>, 2015</time>
| <a href="/blog/2015/06/28/fw1-3-1-rc-1/#disqus_thread"
data-disqus-identifier="http://framework-one.github.io/blog/2015/06/28/fw1-3-1-rc-1/">Comments</a>
</p>
</header>
<div class="entry-content"><p>The first Release Candidate of FW/1 3.1 is now available for testing. You <a href="https://github.com/framework-one/fw1/releases/tag/v3.1-rc1">download FW/1 3.1 RC 1 from GitHub</a>.</p>
<p>These are the changes since Beta 2:</p>
<ul>
<li><code>renderData()</code> supports <code>"jsonp"</code> (Giancarlo Gomez) and <code>"html"</code>.</li>
<li><code>renderData()</code> now causes a content reset before rendering the data (Giancarlo Gomez).</li>
<li>Subsystem-specific configuration can now override <code>diEngine</code>, <code>diLocations</code>, and <code>diComponent</code>. Previously it could only override <code>diConfig</code>.</li>
<li><code>setupApplication()</code> no longer runs twice when first request is also a reload request.</li>
</ul>
<p>For a complete list of changes since 3.0:</p>
<ul>
<li><a href="https://github.com/framework-one/fw1/issues?q=is%3Aissue+is%3Aclosed+milestone%3A3.1">Issues Closed</a></li>
<li><a href="https://github.com/framework-one/fw1/pulls?q=is%3Apr+is%3Aclosed+milestone%3A3.1">Pull Requests Merged</a></li>
</ul>
<p>At this point, release 3.1 is “feature complete” and only bug fixes will be included between now and the “gold” release. Release 3.5 will follow fairly quickly after that, with a focus on language integration, bringing
automatic support for Clojure code in the Model and Controllers, as well as first class support for the Lucee Language in the Model, the Views, and the Controllers.</p>
</div>
</article>
<article>
<header>
<h1 class="entry-title"><a href="/blog/2015/06/20/fw1-3-1-beta-2/">FW/1 3.1 Beta 2 Available!</a></h1>
<p class="meta">
<time datetime="2015-06-20T00:59:49-07:00" pubdate data-updated="true">Jun 20<span>th</span>, 2015</time>
| <a href="/blog/2015/06/20/fw1-3-1-beta-2/#disqus_thread"
data-disqus-identifier="http://framework-one.github.io/blog/2015/06/20/fw1-3-1-beta-2/">Comments</a>
</p>
</header>
<div class="entry-content"><p>The second beta version of FW/1 3.1 is available for testing. Whilst this is a minor bug fix and enhancement release, it now includes the first major rewrite of AOP/1. Documentation will follow shortly. Massive thanks to Daniel Budde for the rewrite! You can <a href="https://github.com/framework-one/fw1/releases/tag/v3.1-beta2">download FW/1 3.1 Beta 2</a> from GitHub, as well as read the full release notes there.</p>
</div>
</article>
<article>
<header>
<h1 class="entry-title"><a href="/blog/2015/05/14/fw1-3-1-beta-1/">FW/1 3.1 Beta 1 Available!</a></h1>
<p class="meta">
<time datetime="2015-05-14T22:40:49-07:00" pubdate data-updated="true">May 14<span>th</span>, 2015</time>
| <a href="/blog/2015/05/14/fw1-3-1-beta-1/#disqus_thread"
data-disqus-identifier="http://framework-one.github.io/blog/2015/05/14/fw1-3-1-beta-1/">Comments</a>
</p>
</header>
<div class="entry-content"><p>The first beta version of FW/1 3.1 is available for testing. This is a minor bug fix and enhancement release. You can <a href="https://github.com/framework-one/fw1/releases/tag/v3.1-beta1">download FW/1 3.1 Beta 1</a> from GitHub, as well as read the full release notes there.</p>
</div>
</article>
<article>
<header>
<h1 class="entry-title"><a href="/blog/2015/05/09/fw1-2-5-1-2-2-2-important/">FW/1 2.5.2 & 2.2.3 - Important Updates!</a></h1>
<p class="meta">
<time datetime="2015-05-09T22:20:49-07:00" pubdate data-updated="true">May 9<span>th</span>, 2015</time>
| <a href="/blog/2015/05/09/fw1-2-5-1-2-2-2-important/#disqus_thread"
data-disqus-identifier="http://framework-one.github.io/blog/2015/05/09/fw1-2-5-1-2-2-2-important/">Comments</a>
</p>
</header>
<div class="entry-content"><p>The thread safety issue affecting SES URLs and routes in FW/1 3.0 has been backported to the 2.2.x and 2.5.x releases so if you believe you are seeing incorrectly routed requests on either of those releases, you can update to the appropriate patch release:</p>
<ul>
<li><a href="https://github.com/framework-one/fw1/releases/tag/v2.5.2">download FW/1 2.5.2</a> to replace Release 2.5.1 or 2.5</li>
<li><a href="https://github.com/framework-one/fw1/releases/tag/v2.2.3">download FW/1 2.2.3</a> to replace Release 2.2.2, 2.2.1 or 2.2</li>
</ul>
<p>These include a context root fix for 2.5.1 and 2.2.2.</p>
<p>If you are on an earlier release of FW/1 and believe you are seeing the issue that is fixed in this patch, please post on the FW/1 mailing list (I’d rather not backport this patch any further — I’d rather you upgraded!).</p>
<p>Once again, thank you to David Sedeño who highlighted this critical issue!</p>
</div>
</article>
<article>
<header>
<h1 class="entry-title"><a href="/blog/2015/05/09/fw1-3-0-1-important/">FW/1 3.0.2 - Important Update!</a></h1>
<p class="meta">
<time datetime="2015-05-09T22:00:49-07:00" pubdate data-updated="true">May 9<span>th</span>, 2015</time>
| <a href="/blog/2015/05/09/fw1-3-0-1-important/#disqus_thread"
data-disqus-identifier="http://framework-one.github.io/blog/2015/05/09/fw1-3-0-1-important/">Comments</a>
</p>
</header>
<div class="entry-content"><p>If you are using SES URLs or routes with FW/1 3.0 you should <a href="https://github.com/framework-one/fw1/releases/tag/v3.0.2">download FW/1 3.0.2</a> and update your applications as soon as possible, to address a thread safety issue in the way that <code>CGI.PATH_INFO</code> was handled in FW/1 3.0. This is an update to 3.0.1 and includes a context root fix.</p>
<p>The symptoms you might see include incorrectly routed requests under load.</p>
<p>Thank you to David Sedeño who highlighted this critical issue!</p>
</div>
</article>
<article>
<header>
<h1 class="entry-title"><a href="/blog/2015/03/21/fw1-3-1-begins/">FW/1 3.1 Begins…</a></h1>
<p class="meta">
<time datetime="2015-03-21T14:30:49-07:00" pubdate data-updated="true">Mar 21<span>st</span>, 2015</time>
| <a href="/blog/2015/03/21/fw1-3-1-begins/#disqus_thread"
data-disqus-identifier="http://framework-one.github.io/blog/2015/03/21/fw1-3-1-begins/">Comments</a>
</p>
</header>
<div class="entry-content"><p>I released FW/1 3.0 about a month ago and now it’s time to get started on the 3.1 release.</div>
<footer>
<a rel="full-article" href="/blog/2015/03/21/fw1-3-1-begins/">Read on →</a>
</footer>
</article>
<article>
<header>
<h1 class="entry-title"><a href="/blog/2015/02/24/fw1-3-0-released/">FW/1 3.0 Released!</a></h1>
<p class="meta">
<time datetime="2015-02-24T09:30:49-08:00" pubdate data-updated="true">Feb 24<span>th</span>, 2015</time>
| <a href="/blog/2015/02/24/fw1-3-0-released/#disqus_thread"
data-disqus-identifier="http://framework-one.github.io/blog/2015/02/24/fw1-3-0-released/">Comments</a>
</p>
</header>
<div class="entry-content"><p>I’m pleased to announce that after lots of user testing and almost no issues found, the Gold Release of <a href="https://github.com/framework-one/fw1/releases/tag/v3.0">FW/1 3.0</a> is now available!</div>
<footer>
<a rel="full-article" href="/blog/2015/02/24/fw1-3-0-released/">Read on →</a>
</footer>
</article>
<article>
<header>
<h1 class="entry-title"><a href="/blog/2015/02/06/fw1-3-0-rc-2-available/">FW/1 3.0 RC 2 Available</a></h1>
<p class="meta">
<time datetime="2015-02-06T20:21:49-08:00" pubdate data-updated="true">Feb 6<span>th</span>, 2015</time>
| <a href="/blog/2015/02/06/fw1-3-0-rc-2-available/#disqus_thread"
data-disqus-identifier="http://framework-one.github.io/blog/2015/02/06/fw1-3-0-rc-2-available/">Comments</a>
</p>
</header>
<div class="entry-content"><p>About two weeks ago I released <a href="http://framework-one.github.io/blog/2015/01/24/fw1-3-0-rc-1-available/">FW/1 3.0 RC 1</a> and the only real bug persisting at that point was related to <a href="https://github.com/framework-one/fw1/issues/283">DI/1 dotted path deduction</a>.</p>
<p>I think that bug is finally squashed, based on early testing by some users that had encountered the bug, so the second <a href="https://github.com/framework-one/fw1/releases/tag/v3.0-rc2">Release Candidate build</a> of FW/1 3.0 is now available!</div>
<footer>
<a rel="full-article" href="/blog/2015/02/06/fw1-3-0-rc-2-available/">Read on →</a>
</footer>
</article>
<article>
<header>
<h1 class="entry-title"><a href="/blog/2015/01/29/lucee-fw1/">Lucee and FW/1</a></h1>
<p class="meta">
<time datetime="2015-01-29T13:30:49-08:00" pubdate data-updated="true">Jan 29<span>th</span>, 2015</time>
| <a href="/blog/2015/01/29/lucee-fw1/#disqus_thread"
data-disqus-identifier="http://framework-one.github.io/blog/2015/01/29/lucee-fw1/">Comments</a>
</p>
</header>
<div class="entry-content"><p>Today saw the announcement of the <a href="http://lucee.org">Lucee Association Switzerland</a> and the release of a new open source CFML engine: <a href="http://lucee.org/downloads.html">Lucee 4.5.0</a>.</p>
<p>For background on the new engine and the association behind it, read <a href="http://blog.adamcameron.me/2015/01/lucee.html">Adam Cameron’s blog post with Q&A</a> about the launch.</p>
<p>I’ve already migrated all my local test environments to Lucee and can report that FW/1 (and DI/1 and cfmljure) all run beautifully on it – and it will be my primary test environment for future development of the FW/1 family going forward.</p>
<p>I’ve also migrated my local dev environment for World Singles over to Lucee and that went pretty smoothly too (I encountered just two issues – both minor, one already fixed in Lucee’s master repository).</p>
<p>The <a href="https://bitbucket.org/lucee/lucee/wiki/Home">Lucee wiki</a> has information about downloading and installing Lucee, as well as building Lucee from source, and how to migrate from Railo to Lucee (hint: it’s really easy – stop the server, remove <code>railo.jar</code>, add <code>lucee.jar</code>, start the server).</p>
<p>Have fun with Lucee!</p>
</div>
</article>
<article>
<header>
<h1 class="entry-title"><a href="/blog/2015/01/25/fw1-clojure-sitting-in-a-tree/">FW/1 & Clojure Sitting in Tree</a></h1>
<p class="meta">
<time datetime="2015-01-25T13:30:49-08:00" pubdate data-updated="true">Jan 25<span>th</span>, 2015</time>
| <a href="/blog/2015/01/25/fw1-clojure-sitting-in-a-tree/#disqus_thread"
data-disqus-identifier="http://framework-one.github.io/blog/2015/01/25/fw1-clojure-sitting-in-a-tree/">Comments</a>
</p>
</header>
<div class="entry-content"><p>Anyone following my tech trajectory will know that, after starting to learn Clojure in 2010, I’ve moved increasingly away from CFML and toward Clojure. In 2014, my team decided that Clojure would be our official primary language and all new development would happen there instead of in CFML. We still have a lot of CFML code in production – about 90kloc – but we consider it “legacy code” at this point. Most of that CFML code is a large ColdBox app that we built about five years ago (technically it’s three ColdBox apps but they share a lot of code). Our application Model has been slowly moving to Clojure so that we can reuse that code in new applications we’re building in Clojure. We’ve also been building new apps with FW/1 (and reusing both our CFML code and our Clojure code). We still like CFML as a templating language for views and our controllers – in our FW/1 apps at least – are often mostly just “glue” code that lets us call into our Clojure model code.</div>
<footer>
<a rel="full-article" href="/blog/2015/01/25/fw1-clojure-sitting-in-a-tree/">Read on →</a>
</footer>
</article>
<article>
<header>
<h1 class="entry-title"><a href="/blog/2015/01/24/fw1-3-0-rc-1-available/">FW/1 3.0 RC 1 Available</a></h1>
<p class="meta">
<time datetime="2015-01-24T22:21:49-08:00" pubdate data-updated="true">Jan 24<span>th</span>, 2015</time>
| <a href="/blog/2015/01/24/fw1-3-0-rc-1-available/#disqus_thread"
data-disqus-identifier="http://framework-one.github.io/blog/2015/01/24/fw1-3-0-rc-1-available/">Comments</a>
</p>
</header>
<div class="entry-content"><p>FW/1 3.0 has been in beta testing since August 2014 and lots of people are already running in production so I figured it was time to push out the first <a href="https://github.com/framework-one/fw1/releases/tag/v3.0-rc1">Release Candidate build</a>.</p>
<p>The main focus of RC 1 has been bug fixes. Only a small number of functional enhancements have been added (notably <code>getEnvVar()</code> to retrieve the value of a system environment variable which can be useful during environment control processing).</div>
<footer>
<a rel="full-article" href="/blog/2015/01/24/fw1-3-0-rc-1-available/">Read on →</a>
</footer>
</article>
<article>
<header>
<h1 class="entry-title"><a href="/blog/2015/01/23/cfmljure-0-1-0/">Cfmljure Release 0.1.0</a></h1>
<p class="meta">
<time datetime="2015-01-23T13:30:49-08:00" pubdate data-updated="true">Jan 23<span>rd</span>, 2015</time>
| <a href="/blog/2015/01/23/cfmljure-0-1-0/#disqus_thread"
data-disqus-identifier="http://framework-one.github.io/blog/2015/01/23/cfmljure-0-1-0/">Comments</a>
</p>
</header>
<div class="entry-content"><p>I started cfmljure back in 2010, a few months after I started to learn Clojure, as a way to run Clojure code inside a CFML application. That early version worked – we’ve been using it in at World Singles since mid-2011 to integrate Clojure into our large ColdBox application, and updated versions of cfmljure have been in very heavy production usage since May 2012.</div>
<footer>
<a rel="full-article" href="/blog/2015/01/23/cfmljure-0-1-0/">Read on →</a>
</footer>
</article>
<article>
<header>
<h1 class="entry-title"><a href="/blog/2014/08/18/fw1-3-0-beta-1-available/">FW/1 3.0 Beta 1 Available</a></h1>
<p class="meta">
<time datetime="2014-08-18T11:21:49-07:00" pubdate data-updated="true">Aug 18<span>th</span>, 2014</time>
| <a href="/blog/2014/08/18/fw1-3-0-beta-1-available/#disqus_thread"
data-disqus-identifier="http://framework-one.github.io/blog/2014/08/18/fw1-3-0-beta-1-available/">Comments</a>
</p>
</header>
<div class="entry-content"><p>Just over four weeks ago, I released <a href="http://framework-one.github.io/blog/2014/07/20/fw1-3-0-alpha-1-available-for-testing/">FW/1 3.0 Alpha 1</a> and declared it <em>feature complete</em>. There were some big changes in that release and, in particular, some long-standing features were removed (after being deprecated in FW/1 2.5) and some recently-introduced features were also deprecated. Today I am releasing the first Beta version which includes bug fixes and usability enhancements, focusing primarily on DI/1 and AOP/1.</div>
<footer>
<a rel="full-article" href="/blog/2014/08/18/fw1-3-0-beta-1-available/">Read on →</a>
</footer>
</article>
<article>
<header>
<h1 class="entry-title"><a href="/blog/2014/07/20/fw1-3-0-alpha-1-available-for-testing/">FW/1 3.0 Alpha 1 Available for Testing!</a></h1>
<p class="meta">
<time datetime="2014-07-20T18:14:24-07:00" pubdate data-updated="true">Jul 20<span>th</span>, 2014</time>
| <a href="/blog/2014/07/20/fw1-3-0-alpha-1-available-for-testing/#disqus_thread"
data-disqus-identifier="http://framework-one.github.io/blog/2014/07/20/fw1-3-0-alpha-1-available-for-testing/">Comments</a>
</p>
</header>
<div class="entry-content"><p>I consider FW/1 3.0 to be <em>feature complete</em> at this point so I am releasing Alpha 1 for testing. I expect people to run into a few bugs – this release has some big changes in it, compared to the 2.x release stream – and it’s possible that new feature requests will crop up during alpha testing, but everything I wanted to change is in place.</div>
<footer>
<a rel="full-article" href="/blog/2014/07/20/fw1-3-0-alpha-1-available-for-testing/">Read on →</a>
</footer>
</article>
<div class="pagination">
<a class="prev" href="/posts/2">← Older</a>
<a href="/blog/archives">Blog Archives</a>
</div>
</div>
<aside class="sidebar">
<section>
<h1>About FW/1</h1>
<p>FW/1 - Framework One - is a family of small, lightweight, convention-over-configuration frameworks, primarily for CFML. FW/1 itself provides MVC, DI/1 provides dependency injection (a.k.a. inversion of control), and AOP/1 provides aspect-oriented programming features on top of DI/1.</p>
<p>In addition, the family includes cfmljure, an easy way to integrate Clojure code into your CFML application, and a port of FW/1 to Clojure as well as a Leiningen template for creating FW/1 projects in Clojure.</p>
</section>
<section>
<h1>3.1 Documentation (develop)</h1>
<a href="/documentation">Getting Started Guide</a><br />
<a href="/documentation/developing-applications.html">Developing Applications Guide</a><br />
<a href="/documentation/using-aop-one.html">Using AOP/1</a><br />
<a href="/documentation/using-di-one.html">Using DI/1</a><br />
<a href="/documentation/using-subsystems.html">Using Subsystems</a><br />
<a href="/documentation/reference-manual.html">Reference Manual</a><br />
<a href="/documentation/roadmap.html">Roadmap</a><br />
</section>
<section>
<h1>3.0 Documentation (stable - master)</h1>
<a href="/documentation/3.0">Getting Started Guide</a><br />
<a href="/documentation/3.0/developing-applications.html">Developing Applications Guide</a><br />
<a href="/documentation/3.0/using-di-one.html">Using DI/1</a><br />
<a href="/documentation/3.0/using-subsystems.html">Using Subsystems</a><br />
<a href="/documentation/3.0/reference-manual.html">Reference Manual</a><br />
<a href="/documentation/3.0/roadmap.html">Roadmap</a><br />
</section>
<section>
<h1>3.5 Documentation (upcoming - clojure)</h1>
<a href="/documentation/3.5">Getting Started Guide</a><br />
<a href="/documentation/3.5/developing-applications.html">Developing Applications Guide</a><br />
<a href="/documentation/3.5/using-aop-one.html">Using AOP/1</a><br />
<a href="/documentation/3.5/using-di-one.html">Using DI/1</a><br />
<a href="/documentation/3.5/using-subsystems.html">Using Subsystems</a><br />
<a href="/documentation/3.5/reference-manual.html">Reference Manual</a><br />
<a href="/documentation/3.5/roadmap.html">Roadmap</a><br />
</section>
<section>
<h1>Recent Posts</h1>
<ul id="recent_posts">
<li class="post">
<a href="/blog/2015/07/07/fw1-3-1-rc-2/">FW/1 3.1 Release Candidate 2 Available!</a>
</li>
<li class="post">
<a href="/blog/2015/06/28/fw1-3-1-rc-1/">FW/1 3.1 Release Candidate 1 Available!</a>
</li>
<li class="post">
<a href="/blog/2015/06/20/fw1-3-1-beta-2/">FW/1 3.1 Beta 2 Available!</a>
</li>
<li class="post">
<a href="/blog/2015/05/14/fw1-3-1-beta-1/">FW/1 3.1 Beta 1 Available!</a>
</li>
<li class="post">
<a href="/blog/2015/05/09/fw1-2-5-1-2-2-2-important/">FW/1 2.5.2 & 2.2.3 - Important Updates!</a>
</li>
<li class="post">
<a href="/blog/2015/05/09/fw1-3-0-1-important/">FW/1 3.0.2 - Important Update!</a>
</li>
<li class="post">
<a href="/blog/2015/03/21/fw1-3-1-begins/">FW/1 3.1 Begins…</a>
</li>
<li class="post">
<a href="/blog/2015/02/24/fw1-3-0-released/">FW/1 3.0 Released!</a>
</li>
<li class="post">
<a href="/blog/2015/02/06/fw1-3-0-rc-2-available/">FW/1 3.0 RC 2 Available</a>
</li>
<li class="post">
<a href="/blog/2015/01/29/lucee-fw1/">Lucee and FW/1</a>
</li>
</ul>
</section>
<section>
<h1>GitHub Repos</h1>
<ul id="gh_repos">
<li class="loading">Status updating…</li>
</ul>
<a href="https://github.com/framework-one">@framework-one</a> on GitHub
<script type="text/javascript">
$(document).ready(function(){
if (!window.jXHR){
var jxhr = document.createElement('script');
jxhr.type = 'text/javascript';
jxhr.src = '/javascripts/libs/jXHR.js';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(jxhr, s);
}
github.showRepos({
user: 'framework-one',
count: 0,
skip_forks: true,
target: '#gh_repos'
});
});
</script>
<script src="/javascripts/github.js" type="text/javascript"> </script>
</section>
<section>
<a href="https://github.com/seancorfield">@seancorfield</a> on GitHub
</section>
</aside>
</div>
</div>
<footer role="contentinfo"><p>
Copyright © 2015 - Sean Corfield -
<span class="credit">Powered by <a href="http://octopress.org">Octopress</a></span>
</p>
</footer>
<script type="text/javascript">
var disqus_shortname = 'framework-one';
var disqus_script = 'count.js';
(function () {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = '//' + disqus_shortname + '.disqus.com/' + disqus_script;
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
}());
</script>
<script type="text/javascript">
(function(){
var twitterWidgets = document.createElement('script');
twitterWidgets.type = 'text/javascript';
twitterWidgets.async = true;
twitterWidgets.src = '//platform.twitter.com/widgets.js';
document.getElementsByTagName('head')[0].appendChild(twitterWidgets);
})();
</script>
</body>
</html>